Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jesusslim/sroute
simple route
https://github.com/jesusslim/sroute
Last synced: about 1 month ago
JSON representation
simple route
- Host: GitHub
- URL: https://github.com/jesusslim/sroute
- Owner: jesusslim
- License: mit
- Created: 2017-10-27T09:03:44.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-10-27T09:15:15.000Z (about 7 years ago)
- Last Synced: 2024-04-01T13:03:09.175Z (9 months ago)
- Language: PHP
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# sroute
simple route## usage
$routes = new \sroute\src\Routes();
$routes->post('/test',[YourController::class,'action']);
$routes->get('/closure',function(){ echo "sroute";});
$route = $routes->match('GET','/closure');
$handler = $routes->handler('GET','/closure');