dumbo/composer.json

32 lines
531 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",
"authors": [
{
"name": "Jamie Barton",
"email": "jamie@notrab.dev"
}
],
"require": {
"php": ">=7.4"
},
"require-dev": {
"phpunit/phpunit": "^9.0"
},
"autoload": {
"psr-4": {
"Dumbo\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Dumbo\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit tests"
}
}