-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
81 lines (81 loc) · 2.36 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "solidworx/simple-http",
"type": "library",
"description": "Provides a fluent interface for HTTP requests",
"keywords": [
"http",
"http-client"
],
"homepage": "https://github.com/SolidWorx/SimpleHttp",
"license": "MIT",
"authors": [
{
"name": "Pierre du Plessis",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"ext-json": "*",
"php-http/client-common": "^2.5",
"php-http/client-implementation": "^1.0",
"php-http/discovery": "^1.14",
"php-http/httplug": "^2.2",
"php-http/message": "^1.12",
"php-http/message-factory": "^1.0",
"psr/http-client": "^1.0",
"psr/http-client-implementation": "^1.0",
"psr/http-factory": "^1.0",
"symfony/mime": "^4.4 || ^5.0 || ^6.0 || ^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.4",
"infection/infection": "^0.26",
"league/flysystem": "^1.0 || ^2.0 || ^3.0",
"nyholm/psr7": "^1.5",
"php-http/guzzle7-adapter": "^1.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.3",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-strict-rules": "^1.0",
"phpunit/phpunit": "^9.5",
"psalm/plugin-phpunit": "^0.17",
"vimeo/psalm": "^4.17"
},
"conflict": {
"php-http/discovery": "1.15.0"
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"phpstan/extension-installer": true,
"infection/extension-installer": true
}
},
"extra": {
"composer-normalize": {
"indent-size": 4,
"indent-style": "space"
}
},
"autoload": {
"psr-4": {
"SolidWorx\\SimpleHttp\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"SolidWorx\\SimpleHttp\\Tests\\": "tests"
}
},
"support": {
"issues": "https://github.com/SolidWorx/SimpleHttp/issues",
"source": "https://github.com/SolidWorx/SimpleHttp"
},
"scripts": {
"php-cs-fixer": "php-cs-fixer fix --config=./.php-cs-fixer.php"
}
}