-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.1 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
{
"name": "quillstack/server-request",
"description": "The request object based on PSR-7: HTTP messages, and with the main goal: to be simple and fast.",
"type": "library",
"license": "MIT",
"homepage": "https://quillstack.org/request",
"authors": [
{
"name": "Radek Ziemniewicz",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"psr/http-message": "^1.0",
"psr/http-factory": "^1.0",
"quillstack/di": "^0.0.8",
"quillstack/header-bag": "^0.0.3",
"quillstack/parameter-bag": "^0.0.2",
"quillstack/validator-interface": "^0.0.2",
"quillstack/uri": "^0.0.3",
"quillstack/stream": "^0.0.2",
"quillstack/http-request": "^0.0.1"
},
"autoload": {
"psr-4": {
"Quillstack\\ServerRequest\\": "src/",
"Quillstack\\ServerRequest\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-main": "1.0.x-dev"
}
},
"require-dev": {
"quillstack/unit-tests": "^0.2.15"
}
}