2017 © Pedro Peláez
 

project laragento

The Laragento Framework.

image

laragento/laragento

The Laragento Framework.

  • Friday, July 27, 2018
  • by orizion
  • Repository
  • 3 Watchers
  • 3 Stars
  • 221 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 4 Versions
  • 146 % Grown

The README.md

Work in Progress. New Laragento Repo, (*1)

Installation

Add following line to your composer.json require block: "laragento/laragento": "dev-dev", (*2)

Add following provider to your app.php config: Laragento\LaragentoServiceProvider::class,, (*3)

Create a new Module

Use following Command:
php artisan module:make MyModule, (*4)

In composer.json add psr-4 line "Module" in autoload block:
"autoload": { "classmap": [ "database/seeds", "database/factories" ], "psr-4": { "App\\": "app/", "Modules\\": "Modules/" } },, (*5)

Add the Provider to your app.php config:
Modules\MyModuleName\Providers\MyModuleProvider::class,, (*6)

The module is ready to use! Great :-), (*7)

The Versions