Skip to content

Commit 247e1e1

Browse files
authored
Try fixing composer memory issues
1 parent 05439bd commit 247e1e1

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.travis.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,14 @@ php:
44
- 7.0
55
- 7.1
66
- 7.2
7+
- 7.3
78

89
env:
910
- SYMFONY_VERSION="3.3.*"
1011
- SYMFONY_VERSION="3.4.*"
1112
- SYMFONY_VERSION="4.0.*"
1213
- SYMFONY_VERSION="4.1.*"
13-
- SYMFONY_VERSION="4.2.x-dev"
14+
- SYMFONY_VERSION="4.2.*"
1415

1516
matrix:
1617
exclude:
@@ -20,7 +21,7 @@ matrix:
2021
- php: 7.0
2122
env: SYMFONY_VERSION="4.1.*"
2223
- php: 7.0
23-
env: SYMFONY_VERSION="4.2.x-dev"
24+
env: SYMFONY_VERSION="4.2.*"
2425

2526
sudo: false
2627

@@ -29,10 +30,10 @@ cache:
2930
- $HOME/.composer/cache
3031

3132
before_install:
32-
- composer selfupdate
33+
- rm -rf composer.lock vendor/
3334
- if [ "$SYMFONY_VERSION" != "" ]; then composer require "symfony/workflow:${SYMFONY_VERSION}" --no-update; fi;
3435

35-
install: composer update --prefer-dist --no-interaction $COMPOSER_FLAGS
36+
install: composer install --prefer-dist --no-interaction
3637

3738
script:
3839
- vendor/bin/phpunit --coverage-clover=build/coverage/clover.xml

0 commit comments

Comments
 (0)