-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
47 lines (47 loc) · 1.17 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
45
46
47
{
"name": "amphp/http",
"description": "Basic HTTP primitives which can be shared by servers and clients.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Niklas Keller",
"email": "me@kelunik.com"
},
{
"name": "Aaron Piotrowski",
"email": "aaron@trowski.com"
}
],
"autoload": {
"psr-4": {
"Amp\\Http\\": "src"
},
"files": [
"src/functions.php",
"src/Internal/constants.php"
]
},
"autoload-dev": {
"psr-4": {
"Amp\\Http\\": "test"
}
},
"require": {
"php": ">=8.1",
"amphp/hpack": "^3",
"amphp/parser": "^1.1",
"league/uri-components": "^2.4.2 | ^7.1",
"psr/http-message": "^1 | ^2"
},
"require-dev": {
"phpunit/phpunit": "^9",
"amphp/php-cs-fixer-config": "^2",
"league/uri": "^6.8 | ^7.1",
"psalm/phar": "^5.26.1"
},
"scripts": {
"test": "php -dzend.assertions=1 -dassert.exception=1 vendor/bin/phpunit",
"code-style": "php vendor/bin/php-cs-fixer fix"
}
}