mirror of
https://github.com/notrab/dumbo.git
synced 2025-01-17 06:08:31 +01:00
32 lines
531 B
JSON
32 lines
531 B
JSON
|
{
|
||
|
"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"
|
||
|
}
|
||
|
}
|