bernard-arhia / routee
A very simple and lightweight routing library for PHP.
0.1.0
2022-07-14 02:24 UTC
Requires
- php: ^8.0.0
This package is auto-updated.
Last update: 2025-06-20 01:21:12 UTC
README
A lightweight php routing service for writing fullstack applications in PHP.
Notice
Make sure you are using php version >= 8.0.1
Installation
composer require bernard-arhia/routee
Example
A simple route service
index.php
use Http\Router; require_once __DIR__ . "/vendor/autoload.php"; $router = new Router; $router->get("/", function(){ echo "Hello world"; }); $router->run();
Now open the terminal and start your php web server
php -S localhost:9000
This will start the php server on port 9000
In your browser open http://localhost:9000 to preview the example
The Route accepts the following http request methods
- GET ($router->get())
- POST ($router->post())
- PUT ($router->put())
- DELETE ($router->delete())
- PATCH ($router->patch())
The router accepts basically the following parameters
- (string) $path: the path of the route
- (method) $callback: the callback function to be executed when the route is matched (You can also pass in a class method)