Skip to content

Commit 1754f8e

Browse files
GrahamCampbellmvriel
authored andcommitted
Travis fixes
1 parent 1b6dc03 commit 1754f8e

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

.travis.yml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
language: php
22

3-
env:
4-
global:
5-
- COMPOSER_FLAGS="--no-interaction"
6-
73
matrix:
84
include:
95
- php: 7.0
@@ -12,8 +8,6 @@ matrix:
128
- COMPOSER_LOCK=true
139
- php: 7.1
1410
env:
15-
# Test lowest dependencies
16-
- COMPOSER_FLAGS="--no-interaction --prefer-lowest"
1711
# Test code standard
1812
- STATIC_ANALYSIS=true
1913
# Test with updated dependencies
@@ -25,21 +19,21 @@ matrix:
2519
install:
2620
- |
2721
if [[ $COMPOSER_LOCK = true ]]; then
28-
composer install $COMPOSER_FLAGS
22+
composer install
2923
else
30-
composer update $COMPOSER_FLAGS
24+
composer update
3125
fi
3226
- composer $COMPOSER
3327
# coding style
34-
- if [[ $STATIC_ANALYSIS != "" ]]; then composer create-project symplify/easy-coding-standard:v2.5.9 temp/ecs; fi
28+
- if [[ $STATIC_ANALYSIS != "" ]]; then composer create-project symplify/easy-coding-standard:v2.5.12 temp/ecs; fi
3529

3630
script:
3731
- vendor/bin/phpunit --coverage-clover=coverage.xml -v
3832
# coding style
3933
- if [[ $STATIC_ANALYSIS != "" ]]; then temp/ecs/bin/ecs check src tests; fi
4034

4135
after_script:
42-
- wget https://github.com/satooshi/php-coveralls/releases/download/v1.0.1/coveralls.phar;
36+
- wget https://github.com/satooshi/php-coveralls/releases/download/v1.1.0/coveralls.phar;
4337
- php coveralls.phar --verbose;
4438

4539
notifications:

0 commit comments

Comments
 (0)