john-jun / route
A Simple restful style request routing
1.0.0
2020-06-01 11:28 UTC
Requires
- php: ^7.1
Requires (Dev)
- phpbench/phpbench: @dev
- phpunit/phpunit: ^8.5
This package is auto-updated.
Last update: 2025-03-29 00:43:52 UTC
README
A simple restful style request route
Install
To install with composer
composer require john-jun/route
Test
composer test
Usage
$route = new Air\Routing\Route(); //add route $route->get('/get', '{className}@{method}'); $route->cli('/cli', '{className}@{method}'); $route->put('/put', '{className}@{method}'); $route->head('/head', '{className}@{method}'); $route->post('/post', '{className}@{method}'); $route->patch('/patch', '{className}@{method}'); $route->delete('/delete', '{className}@{method}'); $route->options('/options', '{className}@{method}'); //add route group $route->group('prefix', static function(Air\Routing\Route $route) { $route->get('/get', '{className}@{method}'); $route->cli('/cli', '{className}@{method}'); $route->put('/put', '{className}@{method}'); $route->head('/head', '{className}@{method}'); $route->post('/post', '{className}@{method}'); $route->patch('/patch', '{className}@{method}'); $route->delete('/delete', '{className}@{method}'); $route->options('/options', '{className}@{method}'); }); print_r($route->dispatch('/get')); print_r($route->dispatch('/prefix/get'));