Skip to content

Commit

Permalink
Update to the latest LTS Symfony 6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
vtsykun committed Dec 2, 2023
1 parent 99a37b1 commit 6590d6b
Show file tree
Hide file tree
Showing 5 changed files with 920 additions and 894 deletions.
2 changes: 1 addition & 1 deletion bin/console
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ if (!is_file(dirname(__DIR__).'/vendor/autoload_runtime.php')) {

require_once dirname(__DIR__).'/vendor/autoload_runtime.php';

return function (array $context) {
return static function (array $context) {
$kernel = new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);

return new Application($kernel);
Expand Down
62 changes: 30 additions & 32 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
"doctrine/annotations": "^1.0",
"doctrine/cache": "^1.10",
"doctrine/common": "^3",
"doctrine/dbal": "^3.7",
"doctrine/doctrine-bundle": "^2.9",
"doctrine/orm": "^2.15",
"ezyang/htmlpurifier": "^4.16",
Expand All @@ -54,48 +55,45 @@
"pagerfanta/doctrine-orm-adapter": "^3.7",
"pagerfanta/twig": "^3.7",
"snc/redis-bundle": "^4.4",
"symfony/asset": "^6.3",
"symfony/console": "^6.3",
"symfony/debug-bundle": "^6.3",
"symfony/dotenv": "^6.3",
"symfony/expression-language": "^6.3",
"symfony/asset": "^6.4 || ^7.0",
"symfony/console": "^6.4 || ^7.0",
"symfony/debug-bundle": "^6.4 || ^7.0",
"symfony/dotenv": "^6.4 || ^7.0",
"symfony/expression-language": "^6.4 || ^7.0",
"symfony/flex": "^2",
"symfony/form": "^6.3",
"symfony/framework-bundle": "^6.3",
"symfony/http-client": "^6.3",
"symfony/ldap": "^6.3",
"symfony/lock": "^6.3",
"symfony/mailer": "^6.3",
"symfony/mime": "^6.3",
"symfony/form": "^6.4 || ^7.0",
"symfony/framework-bundle": "^6.4 || ^7.0",
"symfony/http-client": "^6.4 || ^7.0",
"symfony/ldap": "^6.4 || ^7.0",
"symfony/lock": "^6.4 || ^7.0",
"symfony/mailer": "^6.4 || ^7.0",
"symfony/mime": "^6.4 || ^7.0",
"symfony/monolog-bundle": "^3.8",
"symfony/process": "^6.3",
"symfony/property-access": "^6.3",
"symfony/property-info": "^6.3",
"symfony/runtime": "^6.3",
"symfony/security-bundle": "^6.3",
"symfony/serializer": "^6.3",
"symfony/translation": "^6.3",
"symfony/twig-bundle": "^6.3",
"symfony/validator": "^6.3",
"symfony/var-exporter": "^6.3",
"symfony/web-link": "^6.3",
"symfony/yaml": "^6.3",
"symfony/process": "^6.4 || ^7.0",
"symfony/property-access": "^6.4 || ^7.0",
"symfony/property-info": "^6.4 || ^7.0",
"symfony/runtime": "^6.4 || ^7.0",
"symfony/security-bundle": "^6.4 || ^7.0",
"symfony/serializer": "^6.4 || ^7.0",
"symfony/translation": "^6.4 || ^7.0",
"symfony/twig-bundle": "^6.4 || ^7.0",
"symfony/validator": "^6.4 || ^7.0",
"symfony/var-exporter": "^6.4 || ^7.0",
"symfony/web-link": "^6.4 || ^7.0",
"symfony/yaml": "^6.4 || ^7.0",
"twig/extra-bundle": "^3.4",
"twig/string-extra": "^3.4",
"twig/twig": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"symfony/maker-bundle": "^1",
"symfony/stopwatch": "^6.3",
"symfony/web-profiler-bundle": "^6.3",
"symfony/browser-kit": "^6.3",
"symfony/css-selector": "^6.3"
"symfony/stopwatch": "^6.4 || ^7.0",
"symfony/web-profiler-bundle": "^6.4 || ^7.0",
"symfony/browser-kit": "^6.4 || ^7.0",
"symfony/css-selector": "^6.4 || ^7.0"
},
"config": {
"platform": {
"php": "8.1"
},
"allow-plugins": {
"symfony/flex": true,
"symfony/runtime": true
Expand Down Expand Up @@ -144,7 +142,7 @@
"extra": {
"symfony": {
"allow-contrib": false,
"require": "^6.3"
"require": "6.4.*"
}
}
}
Loading

0 comments on commit 6590d6b

Please sign in to comment.