11language : php 
22
33sudo : false 
4- dist : trusty 
54
65cache :
76  directories :
@@ -19,22 +18,26 @@ matrix:
1918  fast_finish : true 
2019  include :
2120    #  Minimum supported dependencies with the latest and oldest PHP version
22-     - php : 7.1 
23-       env : COMPOSER_FLAGS="--prefer-stable --prefer-lowest" SYMFONY_DEPRECATIONS_HELPER="weak_vendors" 
2421    - php : 7.2 
25-       env : COMPOSER_FLAGS="--prefer-stable --prefer-lowest" SYMFONY_DEPRECATIONS_HELPER="weak_vendors" 
22+       env : COMPOSER_FLAGS="--prefer-stable --prefer-lowest" SYMFONY_DEPRECATIONS_HELPER="max[self]=0" 
23+     - php : 7.3 
24+       env : COMPOSER_FLAGS="--prefer-stable --prefer-lowest" SYMFONY_DEPRECATIONS_HELPER="max[self]=0" 
2625
2726    #  Test the latest stable release
28-     - php : 7.1 
2927    - php : 7.2 
28+     - php : 7.3 
3029      env : CHECK_PHP_SYNTAX="true" 
3130
32-     #  Latest commit to master
31+     #    # Test LTS versions. This makes sure we do not use Symfony packages with version greater
32+     #    # than 2 or 3 respectively. Read more at https://github.com/symfony/lts
33+     #  - php: 7.2
34+     #    env: DEPENDENCIES="symfony/lts:^2"
35+     #  - php: 7.2
36+     #    env: DEPENDENCIES="symfony/lts:^3"
37+ 
38+       #  Latest commit to master
3339    - php : 7.2 
3440      env : STABILITY="dev" 
35-       
36-     - php : 7.3 
37-       env : STABILITY="dev" 
3841
3942  allow_failures :
4043    #  dev-master is allowed to fail.
@@ -46,14 +49,12 @@ before_install:
4649  - if ! [ -v "$DEPENDENCIES" ]; then composer require --no-update ${DEPENDENCIES}; fi; 
4750
4851install :
49-   #  To be removed when this issue will be resolved: https://github.com/composer/composer/issues/5355
50-   - if [[ "$COMPOSER_FLAGS" == *"--prefer-lowest"* ]]; then composer update --prefer-dist --no-interaction --prefer-stable --quiet; fi 
5152  - composer update ${COMPOSER_FLAGS} --prefer-dist --no-interaction 
5253  #  Force most recent version of PHPUnit
53-   - SYMFONY_PHPUNIT_VERSION=6.5  ./vendor/bin/simple-phpunit install
54+   - ./vendor/bin/simple-phpunit install 
5455
5556script :
5657  - composer validate --strict --no-check-lock 
5758  #  Force most recent version of PHPUnit
58-   - SYMFONY_PHPUNIT_VERSION=6.5  ./vendor/bin/simple-phpunit $PHPUNIT_FLAGS
59+   - ./vendor/bin/simple-phpunit $PHPUNIT_FLAGS 
5960  - if [[ "$CHECK_PHP_SYNTAX" == "true" ]]; then php ./vendor/bin/php-cs-fixer fix --no-interaction --dry-run --diff -v; fi; 
0 commit comments