-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·44 lines (44 loc) · 1.07 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "hamlet-framework/http-message",
"type": "library",
"description": "Hamlet Framework / HTTP / Request",
"keywords": ["request", "response", "message", "stream", "http", "uri", "url", "psr-7", "psr-17"],
"license": "GPL-2.0",
"authors": [
{
"name": "Vasily Kartashov",
"email": "[email protected]"
}
],
"config": {
"optimize-autoloader": true,
"classmap-authoritative": true,
"sort-packages": true
},
"provide": {
"psr/http-message-implementation": "1.0",
"psr/http-factory-implementation": "1.0"
},
"require": {
"php": "^7 || ^8",
"psr/http-message": "^1",
"psr/http-factory": "^1"
},
"require-dev": {
"hamlet-framework/http-message-spec": "@stable",
"phpunit/phpunit": "^6 || ^7 || ^8 || ^9",
"squizlabs/php_codesniffer": "@stable",
"vimeo/psalm": "@stable",
"php-parallel-lint/php-parallel-lint": "@stable"
},
"autoload": {
"psr-4": {
"Hamlet\\Http\\Message\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Hamlet\\Http\\Message\\": "tests"
}
}
}