ciarand / quick-n-dirty-php-router
Transitionary router to help the upgrade to modern standards
Installs: 12
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/ciarand/quick-n-dirty-php-router
Requires (Dev)
- phpunit/phpunit: ~4.1
This package is not auto-updated.
Last update: 2026-02-24 15:16:37 UTC
README
This project is deprecated and unmaintained. Proceed with caution!
Quick-n-dirty PHP router
A transitionary router to help upgrading an old PHP codebase to a more modern set of standards.
More information is available on my blog.
Usage
Require it in your project:
composer require 'ciarand\quick-n-dirty-router' 'dev-master'
Move all your files into a handlers dir:
# assuming you're in the webroot
mkdir ../handlers/
find . -name '*.php' | while read file; do
mv "$file" "../handlers/$file";
done;
Put this in an index.php file in your web root:
<?php // index.php
require "vendor/autoload.php";
use RestlessCo\Router;
// where you keep your scripts (outside of the public web dir)
$handler_dir = __DIR__ "/../handler";
// the script you'd like to handle 404s with
$missing_script = $handler_dir . "/404.php";
$requested_path = $handler_dir . "/" . Router::scriptForEnv($_SERVER);
return require (file_exists($requested_path))
? $requested_path
: $missing_script;
Tests
vendor/bin/phpunit
License
MIT, full text is in the LICENSE file.