composer.json
{
"name": "peak/framework",
"description": "The Peak Framework.",
"keywords": ["framework", "peak", "middleware", "psr-7", "psr-11", "psr-15"],
"license": "MIT",
"homepage": "https://peakframework.com",
"support": {
"issues": "https://github.com/peakphp/framework/issues",
"source": "https://github.com/peakphp/framework",
"api": "http://api.peakframework.com/"
},
"authors": [
{
"name": "Francois Lajoie",
"email": "francois@peakframework.com"
}
],
"require": {
"php": ">=7.2",
"psr/container": "^1.0",
"psr/log": "^1.1",
"psr/http-message": "^1.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"psr/http-factory": "^1.0",
"psr/simple-cache": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"phpstan/phpstan": "^0.12",
"symfony/yaml": "^4.4"
},
"suggest": {
"symfony/console": "Required to use Peak\\Bedrock\\Cli\\Application (^4.4).",
"symfony/process": "Required to use Peak\\Bedrock\\Cli\\Application (^4.4).",
"symfony/yaml": "Required to parse yaml file with Peak\\Config (^4.4)."
},
"autoload": {
"files": [
"src/Common/helpers.php"
],
"psr-4": {
"Peak\\": "src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}