-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 973 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 973 Bytes
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
{
"name": "quillstack/response",
"description": "The response object based on PSR-7: HTTP messages, and with the main goal: to be simple and fast.",
"type": "library",
"license": "MIT",
"homepage": "https://quillstack.com/response",
"authors": [
{
"name": "Radek Ziemniewicz",
"email": "radek@quillstack.org"
}
],
"require": {
"php": "^8",
"ext-json": "*",
"psr/http-message": "^1.0",
"psr/http-factory": "^1.0",
"quillstack/di": "^0.0.8",
"quillstack/validator-interface": "^0.0.2",
"quillstack/header-bag": "^0.0.3"
},
"require-dev": {
"quillstack/unit-tests": "^0.2.14"
},
"autoload": {
"psr-4": {
"Quillstack\\Response\\": "src/",
"Quillstack\\Response\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-main": "1.0.x-dev"
}
}
}