We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3aac25d commit d00cc1eCopy full SHA for d00cc1e
.travis.yml
@@ -1,21 +1,29 @@
1
language: php
2
3
-php:
4
- - 7.0
5
- - 7.1
6
- - 7.2
+
+env:
+ global:
+ - USE_COMPOSER_LOCK=false
7
8
matrix:
9
include:
10
+ - php: 7.0
11
+ env:
12
+ - USE_COMPOSER_LOCK=true
13
- php: 7.1
- env: STATIC_ANALYSIS=true
14
+ - COMPOSER_FLAGS="--prefer-lowest"
15
+ - php: 7.2
16
+ - php: 7.3
17
18
+ - STATIC_ANALYSIS=true
19
20
cache:
21
directories:
22
- $HOME/.composer/cache
23
24
install:
- - composer install --no-interaction
25
+ - if [[ $USE_COMPOSER_LOCK != "false" ]]; then rm composer.lock; fi
26
+ - composer install --no-interaction $COMPOSER_FLAGS
27
# coding style
28
- if [[ $STATIC_ANALYSIS != "" ]]; then composer create-project symplify/easy-coding-standard temp/ecs; fi
29
0 commit comments