Skip to content

Commit fb61969

Browse files
authored
Merge pull request #2032 from Atlantic18/feature/travis-no-low-deps
[2.4.x] No longer test lowest dependencies
2 parents ed1ae63 + bfde8d3 commit fb61969

File tree

1 file changed

+9
-16
lines changed

1 file changed

+9
-16
lines changed

.travis.yml

Lines changed: 9 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,17 @@
1+
dist: trusty
12
language: php
23

34
sudo: false
45

56
matrix:
67
include:
7-
- php: 5.4
8-
env: phpunit_exclude_groups=datetimeinterface dependencies=lowest
9-
- php: 5.5
10-
- php: 5.6
11-
- php: 7.0
12-
- php: 7.1
13-
- php: 7.1
14-
env: dependencies=lowest
15-
- php: 7.2
16-
env: dependencies=lowest
8+
- php: '5.4'
9+
env: phpunit_exclude_groups=datetimeinterface
10+
- php: '5.5'
11+
- php: '5.6'
12+
- php: '7.0'
13+
- php: '7.1'
14+
- php: '7.2'
1715

1816
cache:
1917
directories:
@@ -27,12 +25,7 @@ before_install:
2725
- if [[ "$TRAVIS_PHP_VERSION" != 5.* ]]; then cp composer7.json composer.json; fi
2826

2927
install:
30-
- |
31-
if [[ "$dependencies" = "lowest" ]]; then
32-
composer update --prefer-lowest --prefer-stable -n
33-
else
34-
composer install --prefer-dist
35-
fi
28+
- composer install --prefer-dist
3629

3730
script:
3831
- |

0 commit comments

Comments
 (0)