52 lines
1.6 KiB
JSON
52 lines
1.6 KiB
JSON
|
{
|
||
|
"name": "opencultureconsulting/psr15",
|
||
|
"description": "This is a queue-based implementation of PSR-15: HTTP Server Request Handler.",
|
||
|
"type": "library",
|
||
|
"keywords": [
|
||
|
"psr-15",
|
||
|
"http",
|
||
|
"request",
|
||
|
"handler",
|
||
|
"middleware",
|
||
|
"http-server-handler",
|
||
|
"http-server-middleware"
|
||
|
],
|
||
|
"homepage": "https://github.com/opencultureconsulting/psr-15",
|
||
|
"readme": "README.md",
|
||
|
"license": "GPL-3.0-or-later",
|
||
|
"authors": [
|
||
|
{
|
||
|
"name": "Sebastian Meyer",
|
||
|
"email": "sebastian.meyer@opencultureconsulting.com",
|
||
|
"homepage": "https://www.opencultureconsulting.com",
|
||
|
"role": "maintainer"
|
||
|
}
|
||
|
],
|
||
|
"support": {
|
||
|
"issues": "https://github.com/opencultureconsulting/psr-15/issues",
|
||
|
"source": "https://github.com/opencultureconsulting/psr-15",
|
||
|
"docs": "https://github.com/opencultureconsulting/psr-15/blob/main/README.md"
|
||
|
},
|
||
|
"require": {
|
||
|
"php": "^8.0",
|
||
|
"guzzlehttp/psr7": "^2.6",
|
||
|
"opencultureconsulting/basics": "dev-main",
|
||
|
"psr/http-server-handler": "^1.0",
|
||
|
"psr/http-server-middleware": "^1.0"
|
||
|
},
|
||
|
"require-dev": {
|
||
|
"phpstan/phpstan": "^1.10",
|
||
|
"phpstan/phpstan-strict-rules":"^1.5",
|
||
|
"friendsofphp/php-cs-fixer": "^3.38"
|
||
|
},
|
||
|
"provide": {
|
||
|
"psr/http-server-handler-implementation": "1.0",
|
||
|
"psr/http-server-middleware-implementation": "1.0"
|
||
|
},
|
||
|
"autoload": {
|
||
|
"psr-4": {
|
||
|
"OCC\\PSR15\\": "src/"
|
||
|
}
|
||
|
}
|
||
|
}
|