-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
78 lines (78 loc) · 1.87 KB
/
Copy pathcomposer.json
File metadata and controls
78 lines (78 loc) · 1.87 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
{
"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": "smiley@chillerlan.net",
"homepage": "https://github.com/codemasher"
}
],
"funding": [
{
"type": "Ko-Fi",
"url": "https://ko-fi.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.4",
"ext-curl": "*",
"chillerlan/php-http-message-utils": "^3.0",
"chillerlan/php-settings-container": "^4.0",
"chillerlan/psr-7": "^2.0",
"psr/http-client": "^1.0",
"psr/http-message": "^1.1 || ^2.0",
"psr/http-factory": "^1.1",
"psr/log": "^1.1 || ^2.0 || ^3.0"
},
"require-dev": {
"chillerlan/phpunit-http": "^2.0",
"phan/phan": "^6.0.7",
"phpmd/phpmd": "^2.15",
"phpunit/phpunit": "^13.2",
"slevomat/coding-standard": "^8.29",
"squizlabs/php_codesniffer": "^4.0"
},
"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": {
"phan": "@php vendor/bin/phan",
"phpcs": "@php vendor/bin/phpcs -v",
"phpunit": "@php vendor/bin/phpunit"
},
"config": {
"lock": false,
"sort-packages": true,
"platform-check": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}