- Run
composer require netcore/project --dev
- Add service provider to your app.php configuration file
'providers' => [
...
Netcore\Project\ProjectServiceProvider::class,
]
- You can also publish the config file to change implementations (ie. files to remove, turn off cache clear etc.)
php artisan vendor:publish --provider="Netcore\Project\ProjectServiceProvider" --tag=config
- TODO