forked from Bee-Lab/BeelabPaypalBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
37 lines (31 loc) · 852 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
language: php
php:
- 7.1
- 7.2
- 7.3
- 7.4
- nightly
cache:
directories:
- $HOME/.composer/cache
matrix:
fast_finish: true
include:
- php: 7.1
env: SYMFONY_DEPRECATIONS_HELPER=strict COMPOSER_FLAGS="--prefer-lowest"
- php: 7.2
env: SYMFONY_VERSION=3.4.*
- php: 7.3
env: SYMFONY_VERSION=4.4.* SYMFONY_DEPRECATIONS_HELPER=strict
- php: 7.4
env: SYMFONY_VERSION=5.0.*
allow_failures:
- php: nightly
env:
global:
- SYMFONY_DEPRECATIONS_HELPER=weak
- COMPOSER_FLAGS="--prefer-dist"
before_script:
- composer self-update
- if [ "$SYMFONY_VERSION" != "" ]; then composer require "symfony/framework-bundle:${SYMFONY_VERSION}" --no-update; fi;
install: composer update $COMPOSER_FLAGS --no-interaction