laragento/laragento

This package is abandoned and no longer maintained. No replacement package was suggested.

The Laragento Framework.

1.0.2 2019-02-06 16:14 UTC

This package is auto-updated.

Last update: 2021-04-29 00:55:47 UTC


README

Work in Progress. New Laragento Repo

Installation

Add following line to your composer.json require block: "laragento/laragento": "dev-dev"

Add following provider to your app.php config: Laragento\LaragentoServiceProvider::class,

Create a new Module

Use following Command:
php artisan module:make MyModule

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

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

The module is ready to use! Great :-)