dumbo/composer.json

42 lines
858 B
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-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",
"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": {
"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
}