psr-15/composer.json

55 lines
1.6 KiB
JSON
Raw Normal View History

2023-11-19 21:28:27 +01:00
{
"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",
2024-03-31 18:36:06 +02:00
"queue",
2023-11-19 21:28:27 +01:00
"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",
2024-03-31 18:36:06 +02:00
"docs": "https://opencultureconsulting.github.io/psr-15/"
2023-11-19 21:28:27 +01:00
},
"require": {
2024-03-31 18:36:06 +02:00
"php": "^8.1",
2023-11-19 21:28:27 +01:00
"guzzlehttp/psr7": "^2.6",
2024-03-31 18:36:06 +02:00
"opencultureconsulting/basics": "^2.0",
2023-11-19 21:28:27 +01:00
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
2024-01-08 22:53:24 +01:00
"phpstan/phpstan-strict-rules": "^1.5",
2024-03-31 18:36:06 +02:00
"friendsofphp/php-cs-fixer": "^3.52",
"squizlabs/php_codesniffer": "^3.9",
"vimeo/psalm": "^5.23"
2023-11-19 21:28:27 +01:00
},
"provide": {
"psr/http-server-handler-implementation": "1.0",
"psr/http-server-middleware-implementation": "1.0"
},
"autoload": {
"psr-4": {
"OCC\\PSR15\\": "src/"
}
}
}