dumbo/composer.json

52 lines
1.0 KiB
JSON
Raw Normal View History

2024-07-15 14:27:57 +01:00
{
"name": "notrab/dumbo",
"description": "A lightweight, friendly PHP framework for HTTP.",
"type": "library",
"license": "MIT",
2024-07-16 22:50:59 +01:00
"homepage": "https://github.com/notrab/dumbo",
2024-10-21 07:39:55 +01:00
"keywords": [
"framework",
"http",
"hono",
"router"
],
2024-07-15 14:27:57 +01:00
"authors": [
{
"name": "Jamie Barton",
"email": "jamie@notrab.dev"
}
],
2024-10-21 07:39:55 +01:00
"support": {
"issues": "https://github.com/notrab/dumbo/issues",
"source": "https://github.com/notrab/dumbo"
},
2024-07-15 14:27:57 +01:00
"require": {
2024-07-17 09:34:05 +01:00
"php": ">=8.3",
"psr/http-message": "^2.0",
2024-07-16 22:50:59 +01:00
"psr/http-factory": "^1.0",
"psr/http-server-handler": "^1.0",
"psr/log": "^3.0",
"guzzlehttp/psr7": "^2.0",
2024-09-13 11:46:23 +01:00
"nikic/fast-route": "^1.3",
"firebase/php-jwt": "^6.10"
2024-07-15 14:27:57 +01:00
},
"require-dev": {
"phpunit/phpunit": "^11.0"
2024-07-15 14:27:57 +01:00
},
"autoload": {
"psr-4": {
"Dumbo\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Dumbo\\Tests\\": "tests/"
}
},
"scripts": {
2024-10-22 13:47:04 +01:00
"test": "vendor/bin/phpunit tests"
2024-07-15 17:51:56 +01:00
},
2024-10-21 07:39:55 +01:00
"minimum-stability": "stable",
2024-07-15 17:51:56 +01:00
"prefer-stable": true
2024-07-15 14:27:57 +01:00
}