mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-02-02 15:51:48 +03:00
8861fb9d95
Currently, the testsuite relies on SensioFrameworkExtraBundle 3.x which requires Symfony 2.3+. Given that 2.1 and 2.2 are EOLed, removing them from Travis is simpler than updating the testsuite to support them.
26 lines
534 B
YAML
26 lines
534 B
YAML
language: php
|
|
|
|
php:
|
|
- 5.4
|
|
- 5.5
|
|
- 5.6
|
|
- hhvm
|
|
|
|
matrix:
|
|
include:
|
|
- php: 5.5
|
|
env: SYMFONY_VERSION='2.3.*'
|
|
- php: 5.5
|
|
env: SYMFONY_VERSION='2.4.*'
|
|
- php: 5.5
|
|
env: SYMFONY_VERSION='dev-master'
|
|
allow_failures:
|
|
- env: SYMFONY_VERSION=dev-master
|
|
|
|
before_script:
|
|
- composer self-update
|
|
- sh -c 'if [ "$SYMFONY_VERSION" != "" ]; then composer require --no-update symfony/symfony=$SYMFONY_VERSION; fi;'
|
|
- composer install
|
|
|
|
script: phpunit --coverage-text
|