Browse Source

Merge pull request #242 from dereuromark/master-php74

Check PHP74
Mark Sch 6 years ago
parent
commit
59a2f9e9b3
1 changed files with 5 additions and 1 deletions
  1. 5 1
      .travis.yml

+ 5 - 1
.travis.yml

@@ -3,6 +3,7 @@ language: php
 php:
 php:
   - 5.6
   - 5.6
   - 7.3
   - 7.3
+  - 7.4snapshot
 
 
 env:
 env:
   matrix:
   matrix:
@@ -33,8 +34,11 @@ matrix:
     - php: 7.2
     - php: 7.2
       env: CODECOVERAGE=1 DEFAULT=0
       env: CODECOVERAGE=1 DEFAULT=0
 
 
+  allow_failures:
+    - php: 7.4snapshot
+
 before_install:
 before_install:
-  - phpenv config-rm xdebug.ini
+  - if [[ ${TRAVIS_PHP_VERSION} != "7.4snapshot" ]]; then phpenv config-rm xdebug.ini ; fi
 
 
 before_script:
 before_script:
   - if [[ $PREFER_LOWEST != 1 ]]; then composer install --prefer-source --no-interaction ; fi
   - if [[ $PREFER_LOWEST != 1 ]]; then composer install --prefer-source --no-interaction ; fi