Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ php:
- 5.5
- 5.6
- hhvm
- nightly

sudo: false

Expand All @@ -14,7 +15,7 @@ cache:
- $HOME/.composer/cache

env:
- SYMFONY_VERSION=2.6.*
- SYMFONY_VERSION=2.7.*

matrix:
include:
Expand All @@ -23,20 +24,24 @@ matrix:
- php: 5.6
env: SYMFONY_VERSION=2.3.*
- php: 5.6
env: SYMFONY_VERSION=2.5.*
env: SYMFONY_VERSION=2.6.*
- php: 5.6
env: SYMFONY_VERSION=2.7.*
env: SYMFONY_VERSION=2.8.*
- php: 5.6
env: SYMFONY_VERSION=3.0.*
allow_failures:
- php: nightly
- php: 5.6
env: SYMFONY_VERSION=2.8.*
- php: 5.6
env: SYMFONY_VERSION=3.0.*

# we install our own composer to set memory limit to illimited, because on php 5.3 the memory consumption is gigantic
before_install:
- curl -sS http://getcomposer.org/composer.phar > composer.phar
- php composer.phar require symfony/routing:${SYMFONY_VERSION} --no-update
- travis_wait php -d memory_limit=-1 composer.phar update --prefer-dist $COMPOSER_FLAGS

install: travis_wait php -d memory_limit=-1 composer.phar update --prefer-dist $COMPOSER_FLAGS

script: phpunit --coverage-text

Expand Down