Atlas/composer.json

38 lines
862 B
JSON
Raw Normal View History

{
"name": "getphred/atlas",
"description": "A high-performance, modular PHP routing engine with PSR-7 support.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Phred",
"email": "phred@getphred.com",
"homepage": "https://getphred.com",
"role": "Owner"
}
],
"require": {
"php": "^8.2",
"psr/http-message": "^1.0 || ^2.0"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.0",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
"psr-4": {
"Atlas\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Atlas\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable"
}