Skip to content
This repository was archived by the owner on Jan 31, 2020. It is now read-only.

Commit 2e2843d

Browse files
committed
Use Guzzle 4, 5, and 6 only
Guzzle 3 has been EOL for 5 years. 4 has been EOL for 3 years (though it had a release ~21 months ago). Guzzle 5 is still being maintained, but is considered legacy to the PSR-7-based Guzzle 6. Versions 4 and 5 have the same API for our purposes, so we can support those two reasonably, and add support for version 6 (which, while we had code to allow it, it never was actually tested, and, in fact, did not work without deprecation notices).
1 parent 99ef1d4 commit 2e2843d

File tree

4 files changed

+172
-322
lines changed

4 files changed

+172
-322
lines changed

composer.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@
2222
},
2323
"require-dev": {
2424
"doctrine/migrations": "^1.0",
25-
"guzzle/http": "^3.0",
26-
"guzzle/plugin-mock": "^3.0",
25+
"guzzlehttp/guzzle": "^4.2.4 || ^5.3.2 || ^6.3.3",
2726
"mikey179/vfsStream": "^1.6",
2827
"php-amqplib/php-amqplib": "^2.0",
2928
"phpunit/phpunit": "^5.7.27 || 6.5.8 || ^7.1.2",
@@ -37,7 +36,7 @@
3736
"ext-bcmath": "Required by Check\\CpuPerformance",
3837
"sensiolabs/security-checker": "Required by Check\\SecurityAdvisory",
3938
"symfony/yaml": "Required by Check\\YamlFile",
40-
"guzzle/http": "Required by Check\\GuzzleHttpService",
39+
"guzzlehttp/guzzle": "Required by Check\\GuzzleHttpService",
4140
"predis/predis": "Required by Check\\Redis",
4241
"videlalvaro/php-amqplib": "Required by Check\\RabbitMQ",
4342
"doctrine/migrations": "Required by Check\\DoctrineMigration"

0 commit comments

Comments
 (0)