1. Go to this page and download the library: Download chahal26/php-simple-router library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
chahal26 / php-simple-router example snippets
use Chahal26\PhpSimpleRouter\Router;
/* Creating Route Instance */
$router = new Router();
/* Defining Routes */
/* Execute Routes */
$router->run();