Commit a9d8a52b authored by Bas de Nooijer's avatar Bas de Nooijer

Removed pecl_http for PHP5.3 and allow failures for 5.3 (since it's EOL anyway)

parent c8a87dc9
...@@ -16,7 +16,7 @@ env: ...@@ -16,7 +16,7 @@ env:
- SYMFONY_VERSION=2.5.* - SYMFONY_VERSION=2.5.*
before_script: before_script:
- bash -c "if [ $TRAVIS_PHP_VERSION != 'hhvm' ] && [ $TRAVIS_PHP_VERSION != 'hhvm-nightly' ]; then printf '\n\n\n\n' | pecl install pecl_http-1.7.6; fi" - bash -c "if [ $TRAVIS_PHP_VERSION != 'hhvm' ] && [ $TRAVIS_PHP_VERSION != 'hhvm-nightly' ] && [ $TRAVIS_PHP_VERSION != '5.3' ]; then printf '\n\n\n\n' | pecl install pecl_http-1.7.6; fi"
- composer require --prefer-source --dev symfony/event-dispatcher:${SYMFONY_VERSION} - composer require --prefer-source --dev symfony/event-dispatcher:${SYMFONY_VERSION}
script: vendor/bin/phpunit -c phpunit.xml.travis -v script: vendor/bin/phpunit -c phpunit.xml.travis -v
...@@ -25,5 +25,6 @@ after_script: vendor/bin/coveralls -v ...@@ -25,5 +25,6 @@ after_script: vendor/bin/coveralls -v
matrix: matrix:
allow_failures: allow_failures:
- php: 5.3
- php: hhvm - php: hhvm
- php: hhvm-nightly - php: hhvm-nightly
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment