-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(o10r-symfony-template-154): Upgrade doctrine/orm to 3.0
- Loading branch information
1 parent
a46f70e
commit df81959
Showing
3 changed files
with
29 additions
and
4 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 |
---|---|---|
|
@@ -2,4 +2,3 @@ parameters: | |
level: max | ||
paths: | ||
- src | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/usr/bin/env bash | ||
|
||
#!/usr/bin/env bash | ||
|
||
rm -rf tests/App/var/cache/* | ||
symfonyVersion=${1:-6.4.*} | ||
dbalVersion=${2:-3.0} | ||
|
||
rm -rf vendor composer.lock; | ||
composer require symfony/config:$symfonyVersion --no-update --no-scripts | ||
composer require symfony/dependency-injection:$symfonyVersion --no-update --no-scripts | ||
composer require symfony/http-kernel:$symfonyVersion --no-update --no-scripts | ||
composer require symfony/cache:$symfonyVersion --no-update --no-scripts | ||
composer require doctrine/dbal:$dbalVersion --no-update --no-scripts -W | ||
composer require --dev symfony/yaml:$symfonyVersion --no-update --no-scripts | ||
composer require --dev symfony/phpunit-bridge:$symfonyVersion --no-update --no-scripts | ||
composer require --dev symfony/framework-bundle:$symfonyVersion --no-update --no-scripts | ||
|
||
composer install | ||
|