cbxtechcorp/lumen-api-routes-list

Display the route list of dingo api configuration

Maintainers

Package info

github.com/marco-gallegos/lumen-api-route-list

pkg:composer/cbxtechcorp/lumen-api-routes-list

Statistics

Installs: 656

Dependents: 0

Suggesters: 0

Stars: 2

Open Issues: 0

v1.1.0 2019-10-07 15:05 UTC

This package is not auto-updated.

Last update: 2026-03-12 10:11:05 UTC


README

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