-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
67 lines (67 loc) · 1.63 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "chillerlan/php-httpinterface",
"description": "A PSR-7/17/18 http message/client implementation",
"license": "MIT",
"type": "library",
"keywords": [
"http", "request", "response", "message", "client", "factory", "psr-7", "psr-17", "psr-18"
],
"authors": [
{
"name": "smiley",
"email": "[email protected]",
"homepage": "https://github.com/codemasher"
}
],
"support": {
"issues": "https://github.com/chillerlan/php-httpinterface/issues",
"source": "https://github.com/chillerlan/php-httpinterface"
},
"provide": {
"psr/http-client-implementation": "1.0",
"psr/http-factory-implementation": "1.0",
"psr/http-message-implementation": "1.0"
},
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": "^8.1",
"ext-curl": "*",
"chillerlan/php-http-message-utils": "^2.2",
"chillerlan/php-settings-container": "^3.1.1",
"chillerlan/psr-7": "^1.0",
"psr/http-client": "^1.0",
"psr/http-message": "^1.1 || ^2.0",
"psr/http-factory": "^1.0",
"psr/log": "^1.1 || ^2.0 || ^3.0"
},
"require-dev": {
"chillerlan/phpunit-http": "^1.0",
"phan/phan": "^5.4",
"phpmd/phpmd": "^2.15",
"phpunit/phpunit": "^10.5",
"squizlabs/php_codesniffer": "^3.9"
},
"suggest": {
"chillerlan/php-oauth": "A PSR-7 OAuth client/handler that also acts as PSR-18 HTTP client"
},
"autoload": {
"psr-4": {
"chillerlan\\HTTP\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"chillerlan\\HTTPTest\\": "tests/"
}
},
"scripts": {
"phpunit": "@php vendor/bin/phpunit",
"phan": "@php vendor/bin/phan"
},
"config": {
"lock": false,
"sort-packages": true,
"platform-check": true
}
}