| Package Data | |
|---|---|
| Maintainer Username: | cebox616 | 
| Maintainer Contact: | ma_galeza@hotmail.com (Marco A. Gallegos) | 
| Package Create Date: | 2019-04-19 | 
| Package Last Update: | 2019-10-07 | 
| Language: | PHP | 
| License: | MIT | 
| Last Refreshed: | 2025-10-27 03:16:39 | 
| Package Statistics | |
|---|---|
| Total Downloads: | 656 | 
| Monthly Downloads: | 0 | 
| Daily Downloads: | 0 | 
| Total Stars: | 2 | 
| Total Watchers: | 1 | 
| Total Forks: | 1 | 
| Total Open Issues: | 0 | 
Provee el comando api:routes de laravel en lumen
How to add this comand to your lumen project
Add the dependency as dev for deployment optimization.
composer require CbxTechCorp/lumen-api-routes-list --dev
Add this lines to bootstrap/app.php to load the command.
//list api routes
if (class_exists(CbxTechCorp\LumenApiRoutesList\ApiRoutesCommandServiceProvider::class)) {
    $app->register(CbxTechCorp\LumenApiRoutesList\ApiRoutesCommandServiceProvider::class);
};
php artisan api:routes