├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── files └── .gitkeep ├── first-route-tests.php ├── run-tests.php └── worst-case-tests.php /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/* 2 | composer.lock 3 | /files/* 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veonik/php-router-benchmark/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veonik/php-router-benchmark/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veonik/php-router-benchmark/HEAD/composer.json -------------------------------------------------------------------------------- /files/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /first-route-tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veonik/php-router-benchmark/HEAD/first-route-tests.php -------------------------------------------------------------------------------- /run-tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veonik/php-router-benchmark/HEAD/run-tests.php -------------------------------------------------------------------------------- /worst-case-tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veonik/php-router-benchmark/HEAD/worst-case-tests.php --------------------------------------------------------------------------------