dumbo/composer.json
2024-10-22 13:47:04 +01:00

52 lines
1.0 KiB
JSON

{
"name": "notrab/dumbo",
"description": "A lightweight, friendly PHP framework for HTTP.",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/notrab/dumbo",
"keywords": [
"framework",
"http",
"hono",
"router"
],
"authors": [
{
"name": "Jamie Barton",
"email": "jamie@notrab.dev"
}
],
"support": {
"issues": "https://github.com/notrab/dumbo/issues",
"source": "https://github.com/notrab/dumbo"
},
"require": {
"php": ">=8.3",
"psr/http-message": "^2.0",
"psr/http-factory": "^1.0",
"psr/http-server-handler": "^1.0",
"psr/log": "^3.0",
"guzzlehttp/psr7": "^2.0",
"nikic/fast-route": "^1.3",
"firebase/php-jwt": "^6.10"
},
"require-dev": {
"phpunit/phpunit": "^11.0"
},
"autoload": {
"psr-4": {
"Dumbo\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Dumbo\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit tests"
},
"minimum-stability": "stable",
"prefer-stable": true
}