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-07-15 14:27:57 +01:00
|
|
|
"authors": [
|
|
|
|
{
|
|
|
|
"name": "Jamie Barton",
|
|
|
|
"email": "jamie@notrab.dev"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"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",
|
2024-09-02 07:29:17 -03:00
|
|
|
"psr/log": "^3.0",
|
2024-08-30 10:25:52 +01:00
|
|
|
"guzzlehttp/psr7": "^2.0",
|
|
|
|
"nikic/fast-route": "^1.3"
|
2024-07-15 14:27:57 +01:00
|
|
|
},
|
|
|
|
"require-dev": {
|
2024-07-15 15:25:07 +01:00
|
|
|
"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": {
|
|
|
|
"test": "vendor/bin/phpunit tests"
|
2024-07-15 17:51:56 +01:00
|
|
|
},
|
|
|
|
"minimum-stability": "dev",
|
|
|
|
"prefer-stable": true
|
2024-07-15 14:27:57 +01:00
|
|
|
}
|