Package Data | |
---|---|
Maintainer Username: | adoolaard |
Package Create Date: | 2023-12-21 |
Package Last Update: | 2023-12-21 |
Home Page: | https://packagist.org/packages/appzcoder/lumen-routes-list |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-12-17 03:10:07 |
Package Statistics | |
---|---|
Total Downloads: | 36 |
Monthly Downloads: | 1 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 0 |
Total Forks: | 0 |
Total Open Issues: | 0 |
A convenient package for displaying all registered routes in a Lumen application. This tool provides a clear and concise table of routes directly in the console, making it easier to manage and review your application's routing.
This package is a fork of appzcoder/lumen-routes-list
, with additional functionality to enhance the route listing capabilities. All original credits for the base functionality go to appzcoder
.
To integrate this package into your Lumen application, follow these steps:
Install the package via Composer:
composer require adoolaard/lumen-routes-list
Register the service provider in your Lumen application by adding the following line to your bootstrap/app.php file:
$app->register(adoolaard\LumenRoutesList\RoutesCommandServiceProvider::class);
Refresh Composer's autoload files:
composer dump-autoload
With the package installed, you can now use the php artisan route:list command to display all registered routes in your application.
Display all routes:
php artisan route:list
Filter the output by specifying the columns you want to include:
php artisan route:list --columns=Verb --columns=Path --columns=NamedRoute
Show a more compact view with essential columns:
php artisan route:list --compact
Display only routes that match a specific HTTP method (e.g., GET, POST):
php artisan route:list --method=GET
*These options can be used individually or combined to customize the output to your specific needs.
Contributions to this package are welcome! Feel free to fork the repository, make your improvements, and submit a pull request.