-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
80 lines (72 loc) · 1.36 KB
/
composer.json
File metadata and controls
80 lines (72 loc) · 1.36 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "phpgt/fetch",
"description": "Asynchronous HTTP client with promises.",
"type": "library",
"license": "MIT",
"require": {
"php": ">=8.4",
"ext-curl": "*",
"ext-json": "*",
"phpgt/async": "^1.0",
"phpgt/promise": "^2.3",
"phpgt/http": "^1.3",
"phpgt/curl": "^3.2",
"phpgt/json": "^2.2",
"phpgt/propfunc": "^1.0"
},
"require-dev": {
"phpstan/phpstan": "^1.10 || ^2.0",
"phpunit/phpunit": "^10.2",
"phpmd/phpmd": "^2.13",
"squizlabs/php_codesniffer": "^3.7 || ^4.0"
},
"autoload": {
"psr-4": {
"GT\\Fetch\\": "./src",
"Gt\\Fetch\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"GT\\Fetch\\Test\\": "./test/phpunit",
"Gt\\Fetch\\Test\\": "./test/phpunit"
}
},
"authors": [
{
"name": "Greg Bowler",
"email": "greg.bowler@g105b.com"
}
],
"scripts": {
"phpunit": "vendor/bin/phpunit --configuration phpunit.xml",
"phpstan": "vendor/bin/phpstan analyse --level 6 src",
"phpcs": "vendor/bin/phpcs src --standard=phpcs.xml",
"phpmd": "vendor/bin/phpmd src/ text phpmd.xml",
"test": [
"@phpunit",
"@phpstan",
"@phpcs",
"@phpmd"
]
},
"keywords": [
"http-client",
"http",
"fetch",
"async",
"asynchronous",
"xmlhttprequest",
"ajax",
"get",
"post",
"curl",
"curl_multi"
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/PhpGt"
}
]
}