for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
include '../vendor/autoload.php';
use Router\Route;
Route::get('/', function() {
echo "hello";
});
Route::get('/@name/@id:[0-9]{3}', function($name, $id) {
echo "hello, $name ($id)!";