-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bug #3 Allow Symfony 6 in require-dev (sstok)
This PR was squashed before being merged into the main branch. Discussion ---------- | Q | A | ------------- | --- | Branch? | main | Bug fix? | yes | New feature? | no | BC breaks? | no | Deprecations? | no | Fixed tickets | Fix #2 instead --> | License | MIT Commits ------- d01d954 Allow Symfony 6 in require-dev b1eb80c Fix CI workflow 0e7413d Fix PHP 8 deprecation warnings
- Loading branch information
Showing
3 changed files
with
7 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,6 +54,8 @@ jobs: | |
git config --global user.email [email protected] | ||
rm -f composer.lock | ||
composer global config --no-plugins allow-plugins.symfony/flex true | ||
composer config --no-plugins allow-plugins.symfony/flex true | ||
composer global require symfony/flex | ||
composer install --no-progress --no-interaction --no-suggest --optimize-autoloader --ansi | ||
|
@@ -86,6 +88,8 @@ jobs: | |
name: Install Composer dependencies | ||
run: | | ||
rm -f composer.lock | ||
composer global config --no-plugins allow-plugins.symfony/flex true | ||
composer config --no-plugins allow-plugins.symfony/flex true | ||
composer global require symfony/flex | ||
composer install --no-progress --no-interaction --no-suggest --optimize-autoloader --ansi | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters