Commands
Added commands on top of the replacements did on top of the functionality of the Laravel ones.
Make commands
All make commands from the framework are replaced to use the OpensGeneratedFiles trait which contains a method called openGeneratedAfter to open the generated file with an IDE configured.
Make builder
Make custom query builder class (Eloquent) for a specified model name.
php artisan make:builder UserHorizon flush
Flush horizon database (normally Redis) with records of past jobs.
php artisan horizon:flushQueue batches
List all queued jobs sent as batches.
php artisan queue:batchesClear atomic locks
Use carefully on production environments, anyway it should ask to confirmation when running on production.
Clear all cache locks, atomic locks from Laravel.
php artisan cache:clearLocksCheck vendor dependencies
Check and list all the config and publishable group that is outdated on your app.
php artisan vendor:checkGet dependencies licenses list
Gets licenses list from backend and frontend dependencies (using NPM).
php artisan vendor:licensesYou can get Markdown or JSON formatted list by using the option --format
php artisan vendor:licenses --format=markdown
php artisan vendor:licenses --format=jsonLast updated