All Projects → thedevsaddam → lumen-route-list

thedevsaddam / lumen-route-list

Licence: MIT License
Display all the registered route list in lumen application just like laravel.

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to lumen-route-list

laravel-web-logs
View Laravel File-Based Logs In Web
Stars: ✭ 162 (+390.91%)
Mutual labels:  lumen
laravel-bash-helpers
Daily tasks made easier
Stars: ✭ 20 (-39.39%)
Mutual labels:  lumen
laravel-custom-auth
Article: Laravel Custom Auth with guard & driver
Stars: ✭ 32 (-3.03%)
Mutual labels:  lumen
lumen-boilerplate
Opinionated way to start a new Lumen project.
Stars: ✭ 20 (-39.39%)
Mutual labels:  lumen
response
Response HTTP package for Simfony, Laravel, Lumen and PHP 7 with standard REST API
Stars: ✭ 14 (-57.58%)
Mutual labels:  lumen
laravel5-hal-json
Laravel 5 HAL+JSON API Transformer Package
Stars: ✭ 15 (-54.55%)
Mutual labels:  lumen
sns-laravel
A library to enable sending and receiving broadcasts to and from SNS topics in Laravel and Lumen.
Stars: ✭ 23 (-30.3%)
Mutual labels:  lumen
lumen-start-app
Boilerplate for laravel/lumen framework https://github.com/laravel/lumen, ready to be used with https://github.com/ionghitun/react-start-app or https://github.com/ionghitun/next-start-app
Stars: ✭ 41 (+24.24%)
Mutual labels:  lumen
learn-english
📚 Vue + Element-UI + Lumen 开发的背单词应用
Stars: ✭ 53 (+60.61%)
Mutual labels:  lumen
lumen-vue-todo
ToDo App with Lumen, Vue.js, Vue Router and Vuex
Stars: ✭ 33 (+0%)
Mutual labels:  lumen
telegram-observer-bot
Telegram Observer Bot automates a few routine commands to make managing groups easier.
Stars: ✭ 34 (+3.03%)
Mutual labels:  lumen
schema-builder
Laravel/Lumen schema builder & migration generator
Stars: ✭ 51 (+54.55%)
Mutual labels:  lumen
lumen-oauth2
OAuth2 module for the Lumen PHP framework.
Stars: ✭ 29 (-12.12%)
Mutual labels:  lumen
rentnride
Rent&Ride is an open source for Car Rental script. Travel to any of your favourite places by availing the services in the Rent & Ride application. Book cars for rental by making use of the flexibility to choose the car of your interest.
Stars: ✭ 37 (+12.12%)
Mutual labels:  lumen
eshop
e-commerce website built with reactjs & redux on the frontend and lumen on the backend.
Stars: ✭ 27 (-18.18%)
Mutual labels:  lumen
lumen-api-starter
A starter project to develop API with Lumen 8.*
Stars: ✭ 42 (+27.27%)
Mutual labels:  lumen
roadrunner-laravel
Simple bridge between Symfony and RoadRunner.
Stars: ✭ 43 (+30.3%)
Mutual labels:  lumen
docker-lumen
Lumen running on top of a Docker LEMP stack.
Stars: ✭ 16 (-51.52%)
Mutual labels:  lumen
klaravel
DEPRECATED Laravel control panel for developers, comes with integrated Scaffold generator, backups, logs, and embedde user guide.
Stars: ✭ 24 (-27.27%)
Mutual labels:  lumen
lumen-lighthouse-graphql
Lumen example use of a GraphQL PHP server using Lighthouse package
Stars: ✭ 31 (-6.06%)
Mutual labels:  lumen

Lumen Route List

This package will help to display all the registered route list like laravel.

This package is no longer maintained :( use this package appzcoder/lumen-route-list


Installation

Via Composer

$ composer require thedevsaddam/lumen-route-list

Install manually (add the line to composer.json file)

"thedevsaddam/lumen-route-list": "^1.0"

Then open your terminal and hit the command

composer update

Open bootstrap/app.php and add the line below

$app->register(\Thedevsaddam\LumenRouteList\LumenRouteListServiceProvider::class);

Uses

  1. Run php artisan route:list to display the route list
  2. Inorder to filter routes use php artisan route:list --method=searchKeyword --uri=searchKeyword
  3. To display in reverse order use --reverse or -r

Filtering example given below:

php artisan route:list --method=post
#The above example will filter all the routes with post method#
or
php artisan route:list --name=users
#The above example will filter all the routes which name contains *user* keyword#
or
php artisan route:list --name=users --method=get --uri=api/v1
#This above example will filter all the routes where name matches users, method matches get and uri matches api/v1
or to display in reverse order use
php artisan route:list --name=users -r

route list like laravel

License

The lumen-route-list is a open-source software licensed under the MIT License.

Thank you :)

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].