darktec / router
Routing package for PHP 8
1.0.0-alpha.1
2024-10-23 19:53 UTC
Requires
- php: >=8.0
- darktec/util: 1.0.0-alpha.1
Requires (Dev)
- php-di/php-di: ^7.0
- phpunit/phpunit: ^10.0
This package is auto-updated.
Last update: 2025-03-23 21:09:48 UTC
README
Install
To install router as a Composer package run:
$ composer require darktec/router
Usage
First initialize the router
Router::init();
Then create your mappings using METHOD, ROUTE, ACTION where ACTION is a function
Router::map('GET', '/', '\package\controller@function'); // OR Router::map('GET', '/', function() { echo 1; });
Finally match the request method and URI
Router::match($method, $uri);
If a match is found then the function defined is invoked.
Change log
Please see CHANGELOG for more information what has changed recently.
Contributing
Please see CONTRIBUTING and CONDUCT for details.
Credits
License
The MIT License (MIT). Please see License File for more information.