mirror of
https://github.com/notrab/dumbo.git
synced 2025-01-17 06:08:31 +01:00
34 lines
587 B
JSON
34 lines
587 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": "^11.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Dumbo\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Dumbo\\Tests\\": "tests/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": "vendor/bin/phpunit tests"
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true
|
|
}
|