This package provides you an artisan command that creates a App/Models directory and moves App/User.php there.
Then it creates an abstract Model class and extend App\Models\User from abstract App\Models\Model.
After that it requires ide-helper and debugbar and requires it in the AppServiceProvider for local env and adds to dont-discover in composer.json
.
Also it adds a php artisan ide-helper:generate
command to composer.json
post-install-cmd and post-update-cmd.
From the command line, run:
composer require masterro/laravel-fresh-start --dev
For your Laravel app, open config/app.php
and, within the providers
array, append:
MasterRO\LaravelFreshStart\Providers\FreshStartServiceProvider::class
From the command line, run:
php artisan app:fresh-start
You will be asked some questions to configure scaffolding. If you want to skip configuration yot can run command with --default option
php artisan app:fresh-start --default
If you answered "no" on "Remove this package?" question after scaffolding you can remove
composer remove masterro/laravel-fresh-start
Open config/app.php
and remove the provider:
MasterRO\LaravelFreshStart\FreshStartServiceProvider::class