forked from PUGX/PUGXAutoCompleterBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
32 lines (26 loc) · 786 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
language: php
php:
- 7.1
- 7.2
- nightly
cache:
directories:
- $HOME/.composer/cache
matrix:
fast_finish: true
include:
- php: 7.1
env: SYMFONY_VERSION=3.4.* COMPOSER_FLAGS="--prefer-lowest" SYMFONY_DEPRECATIONS_HELPER=strict
# we cannot test on Symfony 4 until LexikFormFilterBundle will not support it
#- php: 7.2
# env: SYMFONY_VERSION=4.0.*
allow_failures:
- php: nightly
env:
global:
- SYMFONY_DEPRECATIONS_HELPER=weak
- COMPOSER_FLAGS="--prefer-dist"
before_install:
- composer self-update
- if [ "$SYMFONY_VERSION" != "" ]; then composer require "symfony/symfony:${SYMFONY_VERSION}" --no-update; fi;
install: composer update $COMPOSER_FLAGS --no-interaction