forked from symfony/swiftmailer-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
33 lines (26 loc) · 754 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
language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache/files
- $HOME/.symfony-phpunit
env:
global:
- SYMFONY_PHPUNIT_DIR=$HOME/.symfony-phpunit
matrix:
fast_finish: true
include:
- php: 7.1
env: COMPOSER_FLAGS="--prefer-lowest" SYMFONY_DEPRECATIONS_HELPER=weak
- php: 7.2
- php: 7.3
- php: 7.4
env: DEPENDENCIES=dev
before_install:
- phpenv config-rm xdebug.ini
- composer global require --no-progress --no-scripts --no-plugins symfony/flex dev-master
- if [ "$DEPENDENCIES" = "dev" ]; then composer config minimum-stability dev; fi;
install:
- travis_retry composer update $COMPOSER_FLAGS
- ./vendor/bin/simple-phpunit install
script: ./vendor/bin/simple-phpunit