Skip to content

Commit a02ebff

Browse files
authored
Merge pull request #31 from launchdarkly/dr/httpoxy
Address httpoxy vulnerability
2 parents bc0fcee + a903193 commit a02ebff

File tree

6 files changed

+219
-245
lines changed

6 files changed

+219
-245
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ Quick setup
1111
0. Install the PHP SDK with [Composer](https://getcomposer.org/)
1212

1313
php composer.phar require launchdarkly/launchdarkly-php
14-
php composer.phar require "guzzlehttp/guzzle:5.*"
15-
php composer.phar require "guzzlehttp/cache-subscriber:0.1.*"
14+
php composer.phar require "guzzlehttp/guzzle:6.2.1"
15+
php composer.phar require "kevinrob/guzzle-cache-middleware": "1.4.1"
1616

1717
1. After installing, require Composer's autoloader:
1818

@@ -49,8 +49,8 @@ Using Guzzle
4949

5050
To use Guzzle it must be required as a dependency:
5151

52-
php composer.phar require "guzzlehttp/guzzle:5.*"
53-
php composer.phar require "guzzlehttp/cache-subscriber:0.1.*"
52+
php composer.phar require "guzzlehttp/guzzle:6.2.1"
53+
php composer.phar require "kevinrob/guzzle-cache-middleware": "1.4.1"
5454

5555
It will then be used as the default way of fetching flags.
5656

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.7.0
1+
1.0.0

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,17 @@
1717
"php": ">=5.5"
1818
},
1919
"require-dev": {
20+
"guzzlehttp/guzzle": "6.2.1",
21+
"kevinrob/guzzle-cache-middleware": "1.4.1",
2022
"phpunit/phpunit": "4.8.26",
2123
"phpdocumentor/phpdocumentor": "2.*",
2224
"predis/predis": "1.0.*",
23-
"guzzlehttp/guzzle": "5.*",
24-
"guzzlehttp/cache-subscriber": "0.1.*",
2525
"zendframework/zend-serializer": "2.7.*"
2626
},
2727
"suggested": {
28-
"predis/predis": "1.0.*",
29-
"guzzlehttp/guzzle": "5.*",
30-
"guzzlehttp/cache-subscriber": "0.1.*"
28+
"guzzlehttp/guzzle": "6.2.1",
29+
"kevinrob/guzzle-cache-middleware": "1.4.1",
30+
"predis/predis": "1.0.*"
3131
},
3232
"autoload": {
3333
"psr-4": {

0 commit comments

Comments
 (0)