forked from willdurand/Hateoas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
42 lines (36 loc) · 879 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
language: php
sudo: required
dist: trusty
group: edge
cache:
directories:
- $HOME/.composer/cache
php:
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm-3.9
- hhvm-3.12
- hhvm-3.15
- hhvm-3.18
matrix:
fast_finish: true
env:
- SYMFONY_VERSION=2.4.*
- SYMFONY_VERSION=2.5.*
- SYMFONY_VERSION=2.6.*
- SYMFONY_VERSION=2.7.*
- SYMFONY_VERSION=2.8.*
- SYMFONY_VERSION=3.0.*
- SYMFONY_VERSION=3.2.*
before_install:
- composer self-update
- composer require --no-update symfony/expression-language "$SYMFONY_VERSION"
- composer require --no-update --dev symfony/yaml "$SYMFONY_VERSION"
- composer require --no-update --dev symfony/routing "$SYMFONY_VERSION"
- composer require --no-update --dev symfony/dependency-injection "$SYMFONY_VERSION"
install:
- composer install --no-interaction --prefer-dist
script:
- ./bin/phpunit --coverage-text