mcmatters / laravel-route-commands
Installs: 756
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 1
Open Issues: 0
pkg:composer/mcmatters/laravel-route-commands
Requires
- php: >=7.0
- illuminate/console: ^5.2 || 6.* || 7.*
- illuminate/routing: ^5.2 || 6.* || 7.*
- illuminate/support: ^5.2 || 6.* || 7.*
README
Package with laravel route commands.
Installation
composer require mcmatters/laravel-route-commands
Include the service provider within your config/app.php
file.
'providers' => [ McMatters\RouteCommands\ServiceProvider::class, ]
Usage
Available commands:
php artisan route:check
— checks all routes for existing the methods in controller and unique route names.php artisan route:export
— export all routes to json or xml file.