Laravel Tutorials

Exclude Vendor and Default Commands in `php artisan dev`

Published
Exclude Vendor and Default Commands in `php artisan dev` image

The php artisan dev command starts your development processes in one command. Those processes include framework defaults, vendor packages via a service provider, and the application.

In Laravel 13.30, we get two new methods for the DevCommands class, which allow you to opt out of vendor and default commands:

use Illuminate\Foundation\DevCommands;
 
DevCommands::withoutVendorCommands();
DevCommands::withoutDefaultCommands();

The methods give you the ability to opt out of vendor commands and default commands. This gives you complete control over what runs and locks everything down to whatever you define:

namespace App\Providers;
 
use Illuminate\Foundation\DevCommands;
use Illuminate\Support\ServiceProvider;
 
class AppServiceProvider extends ServiceProvider
{
public function boot(): void
{
DevCommands::withoutVendorCommands();
DevCommands::withoutDefaultCommands();
 
DevCommands::artisan('serve', 'server');
DevCommands::artisan('queue:work --queue=notifications', 'queue:notifications');
DevCommands::node('dev', 'vite');
}
}

You can also get more granular, using only() and except(). Let's say that you don't want to allow any vendor commands, but you want everything from the framework except logs:

DevCommands::withoutVendorCommands();
DevCommands::except('logs');

Default Commands

The default commands come from the framework's registerDefaults() and registers four processes at the time of writing:

  • server
  • queue
  • logs (when pcntl_fork() exists)
  • vite, (when the project has a package.json)

Checking the List

If you want to see which processes will run, you can use the dev:list command:

php artisan dev:list
 
server php artisan serve .................................. Illuminate\Foundation\Providers\ArtisanServiceProvider@boot
queue php artisan queue:listen --tries=1 --timeout=0 ..... Illuminate\Foundation\Providers\ArtisanServiceProvider@boot
logs php artisan pail --timeout=0 ....................... Illuminate\Foundation\Providers\ArtisanServiceProvider@boot
vite npm run dev ........................................ Illuminate\Foundation\Providers\ArtisanServiceProvider@boot

Using the --json flag gives you JSON output, which could be helpful for agents:

php artisan dev:list --json | jq
[
{
"command": "php artisan serve",
"name": "server",
"color": "#93c5fd",
"source": "Illuminate\\Foundation\\Providers\\ArtisanServiceProvider@boot",
"priority": 0
},
{
"command": "php artisan queue:listen --tries=1 --timeout=0",
"name": "queue",
"color": "#c4b5fd",
"source": "Illuminate\\Foundation\\Providers\\ArtisanServiceProvider@boot",
"priority": 0
},
{
"command": "php artisan pail --timeout=0",
"name": "logs",
"color": "#fb7185",
"source": "Illuminate\\Foundation\\Providers\\ArtisanServiceProvider@boot",
"priority": 0
},
{
"command": "npm run dev",
"name": "vite",
"color": "#fdba74",
"source": "Illuminate\\Foundation\\Providers\\ArtisanServiceProvider@boot",
"priority": 0
}

To learn more, check out the Artisan Dev Command docs. Opting out of default and vendor dev commands was contributed by Jack Bayliss in #61344 and part of the Laravel 13.30 release.

Paul Redmond photo

Staff writer at Laravel News. Full stack web developer and author.

Sponsored

masteringlaravel logo
Laravel Code Review

Get expert guidance in a few days with a Laravel code review

Visit Laravel Code Review

The latest

View all →
The Laracon Archive image

The Laracon Archive

Read article
Group Adjacent Collection Items in Laravel with chunkBy() image

Group Adjacent Collection Items in Laravel with chunkBy()

Read article
Laravel queue:work Now Prints Why the Worker Stopped image

Laravel queue:work Now Prints Why the Worker Stopped

Read article
Sidecar Brings Statamic's Control Panel to Your Existing Markdown Sites image

Sidecar Brings Statamic's Control Panel to Your Existing Markdown Sites

Read article
Collections chunkBy() and Storage Path Hardening in Laravel 13.30 image

Collections chunkBy() and Storage Path Hardening in Laravel 13.30

Read article
Forte: Parse and Rewrite Laravel Blade Templates image

Forte: Parse and Rewrite Laravel Blade Templates

Read article