diff options
Diffstat (limited to 'composer.json')
| -rw-r--r-- | composer.json | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..e9f55d1 --- /dev/null +++ b/composer.json @@ -0,0 +1,25 @@ +{ + "name": "brettparson/miniroute", + "description": "A small attribute-based routing and middleware kernel for PHP applications.", + "type": "library", + "license": "MIT", + "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" + }, + "config": { + "sort-packages": true + } +} |
