-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
47 lines (39 loc) · 1.01 KB
/
.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
46
47
language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
env:
global:
- SYMFONY_PHPUNIT_DIR=$HOME/.phpunit-bridge
matrix:
fast_finish: true
include:
- php: 5.3
dist: precise
- php: 7.1
env: COMPOSER_FLAGS="--prefer-lowest" SYMFONY_DEPRECATION_HELPER=weak
- php: 5.6
env: DEPENDENCIES="symfony/lts:^2"
- php: 7.1
env: DEPENDENCIES="symfony/lts:^3"
- php: 7.2
env: STABILITY=dev
sudo: false
cache:
directories:
- $HOME/.composer/cache/files
- $HOME/.phpunit-bridge
before_install:
- if [[ -v $STABILITY ]]; then composer config minimum-stability $STABILITY; fi;
- if [[ -v $DEPENDENCIES ]]; then composer require --no-update $DEPENDENCIES; fi;
- echo "memory_limit=2G" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
install:
- composer update --prefer-dist --no-interaction $COMPOSER_FLAGS
- vendor/bin/simple-phpunit install
script:
- composer validate --strict --no-check-lock
- vendor/bin/simple-phpunit -v