Skip to content

Commit d11eb05

Browse files
committed
Require guzzle/http 3.1+
1 parent 92b3eec commit d11eb05

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.travis.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,15 @@ php:
66
- 5.5
77

88
env:
9-
- SYMFONY_VERSION="2.1.*"
10-
- SYMFONY_VERSION="2.2.*"
9+
- SYMFONY_VERSION="2.1" GUZZLE_VERSION="3.1"
10+
- SYMFONY_VERSION="2.*" GUZZLE_VERSION="3.1"
11+
- SYMFONY_VERSION="2.1" GUZZLE_VERSION="3.*"
12+
- SYMFONY_VERSION="2.*" GUZZLE_VERSION="3.*"
1113

1214
before_script:
1315
- composer self-update
1416
- composer require symfony/http-foundation:${SYMFONY_VERSION} --no-update
17+
- composer require guzzle/http:${GUZZLE_VERSION} --no-update
1518
- composer install -n --dev --prefer-source
1619

1720
script: vendor/bin/phpcs --standard=PSR2 src && vendor/bin/phpunit --coverage-text

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@
2020
},
2121
"require": {
2222
"php": ">=5.3.2",
23-
"guzzle/http": "~3.0",
23+
"guzzle/http": "~3.1",
2424
"symfony/http-foundation": "~2.1"
2525
},
2626
"require-dev": {
27-
"guzzle/plugin-mock": "~3.0",
27+
"guzzle/plugin-mock": "~3.1",
2828
"mockery/mockery": "~0.7",
2929
"phpunit/phpunit": "~3.7.16",
3030
"silex/silex": "1.0.*@dev",

0 commit comments

Comments
 (0)