-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (59 loc) · 1.21 KB
/
composer.json
File metadata and controls
64 lines (59 loc) · 1.21 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "phpgt/http",
"description": "PSR-7 HTTP message implementation.",
"license": "MIT",
"require": {
"php": ">=8.4",
"ext-dom": "*",
"ext-curl": "*",
"ext-fileinfo": "*",
"phpgt/input": "^1.3",
"phpgt/typesafegetter": "^1.3",
"phpgt/promise": "^2.4",
"phpgt/async": "^1.0",
"phpgt/json": "^2.2",
"phpgt/curl": "^3.2",
"phpgt/propfunc": "^1.0",
"psr/http-message": "^2.0",
"willdurand/negotiation": "3.1.0"
},
"require-dev": {
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^11.5",
"phpmd/phpmd": "^2.13",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
"psr-4": {
"Gt\\Http\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"Gt\\Http\\Test\\": "./test/phpunit"
}
},
"scripts": {
"phpunit": "vendor/bin/phpunit --configuration phpunit.xml",
"phpstan": "vendor/bin/phpstan analyse --memory-limit=512M --level 7 src",
"phpcs": "vendor/bin/phpcs src --standard=phpcs.xml",
"phpmd": "vendor/bin/phpmd src/ text phpmd.xml",
"test": [
"@phpunit",
"@phpstan",
"@phpcs",
"@phpmd"
]
},
"extra": {
"branch-alias": {
"dev-master": "1.3-dev"
}
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/PhpGt"
}
]
}