dumbo/composer.json
Lucas Coutinho 643aa4f90d
feat: add logger helper (#32)
refact: remove monolog/monolog and use psr/log
2024-09-02 11:29:17 +01:00

41 lines
825 B
JSON

{
"name": "notrab/dumbo",
"description": "A lightweight, friendly PHP framework for HTTP.",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/notrab/dumbo",
"authors": [
{
"name": "Jamie Barton",
"email": "jamie@notrab.dev"
}
],
"require": {
"php": ">=8.3",
"psr/http-message": "^2.0",
"psr/http-factory": "^1.0",
"psr/http-server-handler": "^1.0",
"psr/log": "^3.0",
"guzzlehttp/psr7": "^2.0",
"nikic/fast-route": "^1.3"
},
"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
}