-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
88 lines (88 loc) · 2.41 KB
/
Copy pathcomposer.json
File metadata and controls
88 lines (88 loc) · 2.41 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
81
82
83
84
85
86
87
88
{
"name": "initphp/http",
"description": "Standards-compliant PSR-7 / PSR-17 / PSR-18 HTTP message, factory, client and response emitter implementation for PHP 7.4+.",
"type": "library",
"license": "MIT",
"keywords": [
"http",
"psr-7",
"psr-17",
"psr-18",
"http-message",
"http-factory",
"http-client",
"psr-7-message",
"psr-7-factory",
"psr-7-client",
"emitter",
"request",
"response",
"stream",
"uri",
"uploaded-file",
"curl"
],
"homepage": "https://github.com/InitPHP/HTTP",
"support": {
"issues": "https://github.com/InitPHP/HTTP/issues",
"source": "https://github.com/InitPHP/HTTP"
},
"authors": [
{
"name": "Muhammet ŞAFAK",
"email": "info@muhammetsafak.com.tr",
"role": "Developer",
"homepage": "https://www.muhammetsafak.com.tr"
}
],
"require": {
"php": ">=7.4",
"ext-json": "*",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0 || ^2.0"
},
"require-dev": {
"ext-curl": "*",
"http-interop/http-factory-tests": "^1.1 || ^2.0",
"php-http/psr7-integration-tests": "^1.3",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.6 || ^10.5"
},
"suggest": {
"ext-curl": "Required by InitPHP\\HTTP\\Client\\Client (PSR-18) for outbound HTTP requests."
},
"autoload": {
"psr-4": {
"InitPHP\\HTTP\\": "src/"
},
"files": [
"src/Helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"InitPHP\\HTTP\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"test:coverage": "phpunit --coverage-text --coverage-html=build/coverage",
"phpstan": "phpstan analyse --memory-limit=512M",
"ci": [
"@phpstan",
"@test"
]
},
"scripts-descriptions": {
"test": "Run the PHPUnit test suite.",
"test:coverage": "Run the PHPUnit test suite with HTML coverage report.",
"phpstan": "Run PHPStan static analysis.",
"ci": "Run the full CI gate (PHPStan + PHPUnit)."
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}