cbxtechcorp/lumen-api-routes-list

Display the route list of dingo api configuration
656 2
Install
composer require cbxtechcorp/lumen-api-routes-list
Latest Version:v1.1.0
PHP:>=7.2
License:MIT
Last Updated:Oct 7, 2019
Links: GitHub  ·  Packagist
Maintainer: cebox616

Lumen API Route List

Provee el comando api:routes de laravel en lumen

Instalation

How to add this comand to your lumen project

Add Dependency

Add the dependency as dev for deployment optimization.

composer require CbxTechCorp/lumen-api-routes-list --dev

Enable The Command

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);
};

Check the Result

php artisan api:routes