{ "name": "brettparson/miniroute", "description": "A small attribute-based routing and middleware kernel for PHP applications.", "type": "library", "license": "MIT", "keywords": ["routing", "router", "middleware", "attributes", "php"], "require": { "php": ">=8.2" }, "autoload": { "psr-4": { "BrettParson\\MiniRoute\\": "src/" } }, "autoload-dev": { "psr-4": { "BrettParson\\MiniRoute\\Tests\\": "tests/" } }, "require-dev": { "phpunit/phpunit": "^10.5 || ^11.0" }, "scripts": { "test": "phpunit", "bench": "php tests/bench/bench.php", "lint": "find src tests -name '*.php' -exec php -l {} +", "check": ["@lint", "@test"] }, "config": { "sort-packages": true } }