Skip to content

Commit 3a2003c

Browse files
Merge pull request #38 from php-http/2.x
Bump minimum PHP version to 7.x on Travis
2 parents bdd5594 + 8a2c09a commit 3a2003c

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

.travis.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,31 +7,32 @@ cache:
77
- $HOME/.composer/cache/files
88

99
php:
10-
- 5.5
10+
- 7.3
1111

1212
env:
1313
- SUITE="curl" PACKAGE="php-http/curl-client:dev-master zendframework/zend-diactoros"
1414
- SUITE="Socket" PACKAGE="php-http/socket-client:dev-master php-http/client-common"
15-
- SUITE="Guzzle5" PACKAGE="php-http/guzzle5-adapter:dev-master"
1615
- SUITE="Guzzle6" PACKAGE="php-http/guzzle6-adapter:dev-master"
1716
- SUITE="React" PACKAGE="php-http/react-adapter:dev-master"
1817
- SUITE="Buzz" PACKAGE="php-http/buzz-adapter:dev-master"
19-
- SUITE="CakePHP" PACKAGE="php-http/buzz-adapter:dev-master"
20-
- SUITE="Zend" PACKAGE="php-http/buzz-adapter:dev-master"
18+
- SUITE="CakePHP" PACKAGE="php-http/cakephp-adapter:dev-master"
19+
- SUITE="Zend" PACKAGE="php-http/zend-adapter:dev-master"
20+
- SUITE="Artax" PACKAGE="php-http/artax-adapter:dev-master"
2121

2222
matrix:
2323
include:
24-
- php: 7.0
25-
env: SUITE="Artax" PACKAGE="php-http/artax-adapter:dev-master"
24+
- php: 5.5
25+
env: SUITE="Guzzle5" PACKAGE="php-http/guzzle5-adapter:dev-master"
2626
allow_failures:
2727
- env: SUITE="Socket" PACKAGE="php-http/socket-client:dev-master php-http/client-common"
28+
- env: SUITE="CakePHP" PACKAGE="php-http/cakephp-adapter:dev-master"
2829

2930
branches:
3031
except:
3132
- /^analysis-.*$/
3233

3334
before_install:
34-
- phpenv config-rm xdebug.ini
35+
- phpenv config-rm xdebug.ini || true
3536

3637
install:
3738
- composer require ${PACKAGE} --no-update

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
],
1717
"require": {
1818
"php": ">=5.4",
19-
"phpunit/phpunit": "^4.8.35 || ^5.4.3 || ^6.0",
19+
"phpunit/phpunit": "^4.8.35 || ^5.4.3 || ^6.0 || ^7.0",
2020
"php-http/httplug": "^1.0 || ^2.0",
2121
"php-http/message": "^1.0",
2222
"guzzlehttp/psr7": "^1.0",

0 commit comments

Comments
 (0)