Skip to content

Commit f432e4d

Browse files
author
Thibaud Fabre
committed
Drop support for EOL'ed PHP versions
1 parent 17e75dd commit f432e4d

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

.travis.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ language: php
33
sudo: required
44

55
php:
6-
- 5.3.3
7-
- 5.4
86
- 5.5
97
- 5.6
108
- 7.0
@@ -15,13 +13,13 @@ env:
1513
matrix:
1614
fast_finish: true
1715
include:
18-
- php: 5.3.3
16+
- php: 5.5
1917
env: PREFER_LOWEST="--prefer-lowest"
2018

2119
before_script:
2220
- sudo apt-get install bsdtar zip
2321
- npm install connect serve-static
24-
- composer update --prefer-source --no-interaction $PREFER_LOWEST
22+
- composer update --no-interaction $PREFER_LOWEST
2523
- if [ -n "$PREFER_LOWEST" ];then composer update phpunit/phpunit --prefer-source --no-interaction --with-dependencies;fi
2624

2725
script:

composer.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
}
1313
],
1414
"require": {
15-
"php": ">=5.3.3",
15+
"php": ">=5.5",
1616
"ext-mbstring": "*",
1717
"doctrine/collections": "~1.0",
1818
"symfony/filesystem": "^2.0.5|^3.0",
@@ -21,13 +21,14 @@
2121
"require-dev": {
2222
"ext-zip": "*",
2323
"guzzle/guzzle": "~3.0",
24+
"guzzlehttp/guzzle": "^6.0",
2425
"phpunit/phpunit": "^4.0|^5.0",
25-
"symfony/finder": "^2.0.5|^3.0",
26-
"guzzlehttp/guzzle": "^6.1"
26+
"symfony/finder": "^2.0.5|^3.0"
2727
},
2828
"suggest": {
2929
"ext-zip": "To use the ZipExtensionAdapter",
30-
"guzzle/guzzle": "To use the GuzzleTeleporter"
30+
"guzzlehttp/guzzle": "To use the GuzzleTeleporter with Guzzle 6",
31+
"guzzle/guzzle": "To use the GuzzleTeleporter with Guzzle 3"
3132
},
3233
"autoload": {
3334
"psr-4": {

0 commit comments

Comments
 (0)