laragento/laragento

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

The Laragento Framework.

Installs: 360

Dependents: 0

Suggesters: 0

Security: 0

Stars: 4

Watchers: 5

Forks: 0

Open Issues: 0

Type:project

pkg:composer/laragento/laragento

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 :-)