├── .github └── workflows │ └── main.yaml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── composer.json ├── phpcs.xml ├── phpunit.xml └── src └── FastRoute.php /.github/workflows/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/middlewares/fast-route/HEAD/.github/workflows/main.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/middlewares/fast-route/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/middlewares/fast-route/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/middlewares/fast-route/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/middlewares/fast-route/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/middlewares/fast-route/HEAD/composer.json -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/middlewares/fast-route/HEAD/phpcs.xml -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/middlewares/fast-route/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/FastRoute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/middlewares/fast-route/HEAD/src/FastRoute.php --------------------------------------------------------------------------------