27
Laravel package for every project
composer require --dev barryvdh/laravel-ide-helper
composer require barryvdh/laravel-debugbar --dev
composer require laravel/jetstream
php artisan jetstream:install inertia --teams
npm install
npm run dev
php artisan migrate
composer require spatie/laravel-query-builder
$ composer global require friendsofphp/php-cs-fixer
vendor/bin/php-cs-fixer fix
composer require nunomaduro/phpinsights --dev
php artisan vendor:publish --provider="NunoMaduro\PhpInsights\Application\Adapters\Laravel\InsightsServiceProvider"
php artisan insights
composer require spatie/laravel-ray --dev
php artisan ray:publish-config
Add the package as a dev dependency
"tutorigo/laravel-ide-macros": "*"
On terminal
php artisan vendor:publish --provider="Tutorigo\LaravelMacroHelper\IdeMacrosServiceProvider"
php artisan ide-helper:macros
Those are the most useful packages to work on almost every project.
If you like to use PHPInsights or PHP-CS-Fixer there is a reading list about "Laravel profesional setup" that would guide you to customize this packages behavior with a lot of detail.
Thanks for reading
27