forked from KnpLabs/KnpTimeBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
45 lines (37 loc) · 870 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache
env:
global:
- SYMFONY_VERSION=""
- TWIG_VERSION=""
php:
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
matrix:
include:
- php: 5.6
env: SYMFONY_VERSION="2.3.x"
- php: 5.6
env: SYMFONY_VERSION="2.8.x symfony/phpunit-bridge:^2.7"
- php: 5.6
env: SYMFONY_VERSION="3.0.x"
- php: 5.6
env: SYMFONY_VERSION="dev-master"
- php: 5.6
env: TWIG_VERSION="2.0.x-dev"
- php: 7.1
env: SYMFONY_VERSION="4.0.x@beta"
fast_finish: true
allow_failures:
- php: hhvm
- env: TWIG_VERSION="2.0.x-dev"
- env: SYMFONY_VERSION="dev-master"
before_install: if [[ "$SYMFONY_VERSION" != "" ]]; then composer require --no-update symfony/symfony:${SYMFONY_VERSION}; fi
install: composer update --prefer-dist
script: vendor/bin/phpunit