-
Notifications
You must be signed in to change notification settings - Fork 50
/
composer.json
104 lines (104 loc) · 3.33 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "php-http/httplug-bundle",
"type": "symfony-bundle",
"description": "Symfony integration for HTTPlug",
"keywords": [
"http",
"discovery",
"adapter",
"message",
"factory",
"bundle",
"httplug",
"php-http"
],
"homepage": "http://httplug.io",
"license": "MIT",
"authors": [
{
"name": "David Buchmann",
"email": "[email protected]"
},
{
"name": "Tobias Nyholm",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"php-http/client-common": "^2.0",
"php-http/client-implementation": "^1.0",
"php-http/discovery": "^1.14",
"php-http/httplug": "^2.0",
"php-http/logger-plugin": "^1.1",
"php-http/message": "^1.13",
"php-http/stopwatch-plugin": "^1.2",
"psr/http-factory-implementation": "^1.0",
"psr/http-message": "^1.0 || ^2.0",
"symfony/config": "^6.4 || ^7.1",
"symfony/dependency-injection": "^6.4 || ^7.1",
"symfony/event-dispatcher": "^6.4 || ^7.1",
"symfony/http-kernel": "^6.4 || ^7.1",
"symfony/options-resolver": "^6.4 || ^7.1"
},
"conflict": {
"kriswallsmith/buzz": "<0.17",
"php-http/guzzle6-adapter": "<1.1",
"php-http/cache-plugin": "<1.7",
"php-http/curl-client": "<2.0",
"php-http/socket-client": "<2.0",
"php-http/react-adapter": "<3.0",
"php-http/throttle-plugin": "<1.1"
},
"require-dev": {
"guzzlehttp/psr7": "^1.7 || ^2.0",
"matthiasnoback/symfony-config-test": "^5.2",
"matthiasnoback/symfony-dependency-injection-test": "^4.3.1 || ^5.0",
"nyholm/nsa": "^1.1",
"nyholm/psr7": "^1.2.1",
"php-http/cache-plugin": "^1.7",
"php-http/mock-client": "^1.2",
"php-http/promise": "^1.0",
"php-http/throttle-plugin": "^1.1",
"phpunit/phpunit": "^9",
"symfony/browser-kit": "^6.4 || ^7.1",
"symfony/cache": "^6.4 || ^7.1",
"symfony/dom-crawler": "^6.4 || ^7.1",
"symfony/framework-bundle": "^6.4 || ^7.1",
"symfony/http-foundation": "^6.4 || ^7.1",
"symfony/stopwatch": "^6.4 || ^7.1",
"symfony/twig-bundle": "^6.4 || ^7.1",
"symfony/web-profiler-bundle": "^6.4 || ^7.1",
"twig/twig": "^1.41 || ^2.10 || ^3.0"
},
"suggest": {
"php-http/cache-plugin": "To configure clients that cache responses",
"php-http/mock-client": "Add this to your require-dev section to mock HTTP responses easily",
"twig/twig": "Add this to your require-dev section when using the WebProfilerBundle"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"symfony/flex": true,
"php-http/discovery": false
}
},
"autoload": {
"psr-4": {
"Http\\HttplugBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Http\\HttplugBundle\\Tests\\": "tests/"
},
"classmap": [
"tests/Resources/app/AppKernel.php"
]
},
"prefer-stable": false,
"scripts": {
"test": "vendor/bin/phpunit",
"test-ci": "vendor/bin/phpunit --coverage-text --coverage-clover=build/coverage.xml"
}
}