Skip to content
This repository was archived by the owner on Feb 4, 2023. It is now read-only.

Commit cfc8394

Browse files
Merge pull request #850 from stephanvierkant/patch-10
Drop PHP < 7.1.
2 parents ac2f946 + 2181057 commit cfc8394

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

.travis.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@ cache:
99
matrix:
1010
fast_finish: true
1111
include:
12-
- php: 5.5
13-
- php: 5.6
14-
- php: 7.0
1512
- php: 7.1
1613
env: DEPENDENCIES=beta
1714
- php: hhvm
@@ -26,8 +23,7 @@ before_install:
2623
- if [ "$DEPENDENCIES" = "beta" ]; then composer config minimum-stability beta; fi;
2724
- if [ "$SYMFONY_VERSION" != "" ]; then composer require --dev --no-update symfony/framework-bundle=$SYMFONY_VERSION; fi
2825
- if [ "$DEPENDENCIES" = "dev" ]; then perl -pi -e 's/^}$/,"minimum-stability":"dev"}/' composer.json; fi;
29-
- if [[ ${TRAVIS_PHP_VERSION:0:2} == "5." ]]; then composer require --dev "phpunit/phpunit=4.8.*"; fi
30-
- if [[ ${TRAVIS_PHP_VERSION:0:2} == "7." || ${TRAVIS_PHP_VERSION:0:2} == "hh" ]]; then composer require --dev "phpunit/phpunit=5.7.*"; fi
26+
- composer require --dev "phpunit/phpunit=5.7.*"
3127

3228
install: composer update --prefer-dist --no-interaction $COMPOSER_FLAGS
3329

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"issues": "https://github.com/stwe/DatatablesBundle/issues"
1919
},
2020
"require": {
21-
"php": ">=5.5.9",
21+
"php": ">=7.1",
2222
"symfony/framework-bundle": "^3.0|^4.0",
2323
"doctrine/orm": "^2.5",
2424
"symfony/options-resolver": "^3.0|^4.0",

0 commit comments

Comments
 (0)