Skip to content

Commit 8991386

Browse files
authored
Merge pull request #114 from localheinz/fix/php
Fix: Drop support for unsupported PHP versions
2 parents 3206ccd + ea75704 commit 8991386

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

.travis.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,6 @@ cache:
77
- $HOME/.composer/cache/files
88

99
php:
10-
- 5.4
11-
- 5.5
12-
- 5.6
13-
- 7.0
1410
- 7.1
1511
- 7.2
1612
- 7.3
@@ -22,12 +18,11 @@ env:
2218
matrix:
2319
fast_finish: true
2420
include:
25-
- php: 5.4
21+
- php: 7.1
2622
env: COMPOSER_FLAGS="--prefer-stable --prefer-lowest" COVERAGE=true TEST_COMMAND="composer test-ci"
2723

2824
before_install:
2925
- if [[ $COVERAGE != true ]]; then phpenv config-rm xdebug.ini || true; fi
30-
- if [[ "${TRAVIS_PHP_VERSION}" == "5.4" ]]; then composer remove slim/slim --dev --no-update; fi
3126

3227
install:
3328
- composer update ${COMPOSER_FLAGS} --prefer-dist --no-interaction

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
}
1212
],
1313
"require": {
14-
"php": "^5.4 || ^7.0",
14+
"php": "^7.1",
1515
"clue/stream-filter": "^1.4",
1616
"php-http/message-factory": "^1.0.2",
1717
"psr/http-message": "^1.0"

0 commit comments

Comments
 (0)