Skip to content

Commit 843e6ba

Browse files
committed
Ignore deprecations on 7.1 due to Symfony 3.4; use proper PHP 7.4 release
1 parent a99ab7e commit 843e6ba

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ php:
44
- 7.1
55
- 7.2
66
- 7.3
7-
- 7.4snapshot
7+
- 7.4
88

99
sudo: false
1010

@@ -22,15 +22,15 @@ stages:
2222
- Code style & static analysis
2323

2424
before_install:
25-
- if [[ $TRAVIS_PHP_VERSION != '7.4snapshot' ]]; then phpenv config-rm xdebug.ini; fi
25+
- phpenv config-rm xdebug.ini || echo "Unable to remove xDebug"
26+
- if [[ $TRAVIS_PHP_VERSION != '7.1' ]]; then export SYMFONY_DEPRECATIONS_HELPER=disabled; fi
2627

2728
install:
2829
- composer update --no-interaction --no-suggest --prefer-dist --prefer-stable
2930

3031
script:
3132
- vendor/bin/phpunit
3233

33-
3434
jobs:
3535
include:
3636
- name: Prefer lowest

0 commit comments

Comments
 (0)