dumbo/composer.json

34 lines
587 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": "^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
}