1. Go to this page and download the library: Download dez-php/dez-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/ */
dez-php / dez-router example snippets
$di = new Container();
$di->set( 'router', function() {
return new Router();
} );
$di->set( 'eventDispatcher', function() {
new Dispatcher();
} );
$di->set( 'request', function() {
return new Request();
} );
// try to fetch router from container
try {
/** @var $router Router */
$router = $di->get( 'router' );
} catch ( \Exception $e ) {
die($e->getMessage());
}