Skip to content

Commit

Permalink
feat(symfony): update Symfony to version 7.0 (#808)
Browse files Browse the repository at this point in the history
symfony/web-profiler-bundle also added by default as is a good standard
installation
symfony/twig-bundle also installed as a require to avoid recipe 'all'
environment bundles.php issues
  • Loading branch information
andytson-inviqa authored Feb 29, 2024
1 parent 9e381fc commit b24caf1
Showing 1 changed file with 26 additions and 21 deletions.
47 changes: 26 additions & 21 deletions src/symfony/application/skeleton/composer.json.twig
Original file line number Diff line number Diff line change
Expand Up @@ -7,31 +7,36 @@
"php": ">= 8.2",
"ext-ctype": "*",
"ext-iconv": "*",
"symfony/console": "~5.4",
"symfony/dotenv": "~5.4",
"symfony/flex": "^2.1.8",
"symfony/framework-bundle": "~5.4",
"symfony/runtime": "~5.4",
"symfony/translation": "~5.4",
"symfony/yaml": "~5.4"
"symfony/console": "~7.0",
"symfony/dotenv": "~7.0",
"symfony/flex": "^2.4",
"symfony/framework-bundle": "~7.0",
"symfony/runtime": "~7.0",
"symfony/translation": "~7.0",
"symfony/twig-bundle": "^7.0",
"symfony/yaml": "~7.0",
"twig/extra-bundle": "^3.0",
"twig/twig": "^3.0"
},
"require-dev": {
"behat/behat": "^3.5",
"behat/mink-browserkit-driver": "^2.1",
"dmore/behat-chrome-extension": "^1.3",
"dmore/chrome-mink-driver": "^2.7",
"behat/behat": "^3.14",
"behat/mink-browserkit-driver": "^2.2",
"dmore/behat-chrome-extension": "^1.4",
"dmore/chrome-mink-driver": "^2.9",
"friends-of-behat/mink-extension": "^2.7",
"phpcompatibility/php-compatibility": "dev-develop",
"phpmd/phpmd": "^2.7",
"phpspec/phpspec": "^7.0",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-symfony": "^0.12",
"phpunit/phpunit": "^9.3",
"phpmd/phpmd": "^2.15",
"phpspec/phpspec": "^7.5",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-symfony": "^1.3",
"phpunit/phpunit": "^10.5",
"sensiolabs/behat-page-object-extension": "^2.3",
"slevomat/coding-standard": "^6.0",
"squizlabs/php_codesniffer": "^3.5",
"symfony/http-client": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/phpunit-bridge": "^5.2"
"slevomat/coding-standard": "^8.0",
"squizlabs/php_codesniffer": "^3.9",
"symfony/http-client": "^7.0",
"symfony/phpunit-bridge": "^7.0",
"symfony/stopwatch": "^7.0",
"symfony/web-profiler-bundle": "^7.0"
},
"config": {
"allow-plugins": {
Expand Down Expand Up @@ -116,7 +121,7 @@
"extra": {
"symfony": {
"allow-contrib": false,
"require": "5.4.*"
"require": "7.0.*"
}
},
"minimum-stability": "stable"
Expand Down

0 comments on commit b24caf1

Please sign in to comment.