Atlas/composer.json
Funky Waddle 30f84a5023 refactor: restructure into proper directory hierarchy
- Move Config class to src/Config/Config.php
- Move exception classes to src/Exception/
- Move Router components to src/Router/
- Update test files with proper namespace references
2026-02-13 17:26:31 -06:00

37 lines
812 B
JSON

{
"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": {
"phpunit/phpunit": "^10.0"
},
"autoload": {
"psr-4": {
"Atlas\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Atlas\\": "src/",
"Atlas\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable"
}