Skip to content
This repository has been archived by the owner on Feb 6, 2022. It is now read-only.

Commit

Permalink
minor #293 Used Symfony Flex in favor of symfony/lts (wouterj)
Browse files Browse the repository at this point in the history
This PR was merged into the 3.2-dev branch.

Discussion
----------

Used Symfony Flex in favor of symfony/lts

The `symfony/lts` package is deprecated. Global Symfony Flex + `SYMFONY_REQUIRE` is the new official way of limiting a Symfony version.

Commits
-------

553db80 Used Symfony Flex in favor of symfony/lts
  • Loading branch information
nicolas-grekas committed Oct 20, 2019
2 parents cb125b3 + 553db80 commit aaae8dc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Expand Up @@ -17,14 +17,14 @@ matrix:
- php: 7.1
env: COMPOSER_FLAGS="--prefer-lowest" SYMFONY_DEPRECATIONS_HELPER=weak
- php: 7.1
env: SYMFONY_LTS=^3
env: SYMFONY_REQUIRE="3.*"
- php: 7.2
- php: 7.3
env: DEPENDENCIES=dev

before_install:
- phpenv config-rm xdebug.ini
- if [ "$SYMFONY_LTS" != "" ]; then composer require --dev --no-update "symfony/lts:$SYMFONY_LTS"; fi
- composer global require --no-progress --no-scripts --no-plugins symfony/flex dev-master
- if [ "$DEPENDENCIES" = "dev" ]; then composer config minimum-stability dev; fi;

install:
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -25,7 +25,7 @@
"require-dev": {
"symfony/console": "~2.7|~3.3|~4.0",
"symfony/framework-bundle": "~2.7|~3.3|~4.0",
"symfony/phpunit-bridge": "~3.3|~4.0",
"symfony/phpunit-bridge": "^3.4.32|^4.3.5",
"symfony/yaml": "~2.7|~3.3|~4.0"
},
"conflict": {
Expand Down

0 comments on commit aaae8dc

Please sign in to comment.