Skip to content

Commit

Permalink
chore: Upgrade to Symfony 7.1 (with v7.1.1) & bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
AirBair committed Jun 23, 2024
1 parent 3bcfbe0 commit d52db41
Show file tree
Hide file tree
Showing 9 changed files with 1,765 additions and 967 deletions.
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ TRUSTED_PROXIES=127.0.0.0/8,10.0.0.0/8,172.16.0.0/12,192.168.0.0/16
#
# DATABASE_URL="sqlite:///%kernel.project_dir%/var/data.db"
# DATABASE_URL="mysql://app:!ChangeMe!@127.0.0.1:3306/app?serverVersion=8.0.32&charset=utf8mb4"
DATABASE_URL="mysql://app:!ChangeMe!@127.0.0.1:3306/app?serverVersion=11.2.2-MariaDB&charset=utf8mb4"
DATABASE_URL="mysql://app:!ChangeMe!@127.0.0.1:3306/app?serverVersion=11.3.2-MariaDB&charset=utf8mb4"
# DATABASE_URL="postgresql://app:!ChangeMe!@127.0.0.1:5432/app?serverVersion=16&charset=utf8"
###< doctrine/doctrine-bundle ###

Expand Down
2 changes: 1 addition & 1 deletion .php-cs-fixer.dist.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
->setRules([
'@PhpCsFixer' => true,
'@PhpCsFixer:risky' => true,
'@PHPUnit84Migration:risky' => true,
'@PHPUnit100Migration:risky' => true,
'@PHP83Migration' => true,
'@PHP80Migration:risky' => true,
'multiline_whitespace_before_semicolons' => ['strategy' => 'no_multi_line'],
Expand Down
74 changes: 37 additions & 37 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,48 +5,48 @@
"php": "^8.3",
"ext-ctype": "*",
"ext-iconv": "*",
"api-platform/core": "^3.2.17",
"doctrine/doctrine-bundle": "^2.11.3",
"doctrine/doctrine-migrations-bundle": "^3.3.0",
"doctrine/orm": "^2.19.1",
"easycorp/easyadmin-bundle": "^4.9.4",
"api-platform/core": "^3.3.6",
"doctrine/doctrine-bundle": "^2.12.0",
"doctrine/doctrine-migrations-bundle": "^3.3.1",
"doctrine/orm": "^2.19.5",
"easycorp/easyadmin-bundle": "^4.10.2",
"nelmio/cors-bundle": "^2.4.0",
"symfony/asset": "7.0.*",
"symfony/browser-kit": "7.0.*",
"symfony/console": "7.0.*",
"symfony/css-selector": "7.0.*",
"symfony/dotenv": "7.0.*",
"symfony/expression-language": "7.0.*",
"symfony/asset": "7.1.*",
"symfony/browser-kit": "7.1.*",
"symfony/console": "7.1.*",
"symfony/css-selector": "7.1.*",
"symfony/dotenv": "7.1.*",
"symfony/expression-language": "7.1.*",
"symfony/flex": "^2.4.5",
"symfony/framework-bundle": "7.0.*",
"symfony/http-client": "7.0.*",
"symfony/mime": "7.0.*",
"symfony/framework-bundle": "7.1.*",
"symfony/http-client": "7.1.*",
"symfony/mime": "7.1.*",
"symfony/monolog-bundle": "^3.10",
"symfony/property-access": "7.0.*",
"symfony/property-info": "7.0.*",
"symfony/runtime": "7.0.*",
"symfony/security-bundle": "7.0.*",
"symfony/serializer": "7.0.*",
"symfony/twig-bundle": "7.0.*",
"symfony/validator": "7.0.*",
"symfony/property-access": "7.1.*",
"symfony/property-info": "7.1.*",
"symfony/runtime": "7.1.*",
"symfony/security-bundle": "7.1.*",
"symfony/serializer": "7.1.*",
"symfony/twig-bundle": "7.1.*",
"symfony/validator": "7.1.*",
"symfony/webpack-encore-bundle": "^2.1.1",
"symfony/yaml": "7.0.*",
"vich/uploader-bundle": "^2.3.1"
"symfony/yaml": "7.1.*",
"vich/uploader-bundle": "^2.3.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.51.0",
"phpstan/extension-installer": "^1.3.1",
"phpstan/phpstan": "^1.10.62",
"phpstan/phpstan-deprecation-rules": "^1.1.4",
"phpstan/phpstan-doctrine": "^1.3.62",
"phpstan/phpstan-phpunit": "^1.3.16",
"phpstan/phpstan-symfony": "^1.3.9",
"phpunit/phpunit": "^9.6.17",
"rector/rector": "^1.0",
"symfony/maker-bundle": "^1.56.0",
"symfony/phpunit-bridge": "7.0.*",
"symfony/stopwatch": "7.0.*",
"symfony/web-profiler-bundle": "7.0.*"
"friendsofphp/php-cs-fixer": "^3.59.3",
"phpstan/extension-installer": "^1.4.1",
"phpstan/phpstan": "^1.11.5",
"phpstan/phpstan-deprecation-rules": "^1.2.0",
"phpstan/phpstan-doctrine": "^1.4.3",
"phpstan/phpstan-phpunit": "^1.4.0",
"phpstan/phpstan-symfony": "^1.4.4",
"phpunit/phpunit": "^11.2.5",
"rector/rector": "^1.1.1",
"symfony/maker-bundle": "^1.60.0",
"symfony/phpunit-bridge": "7.1.*",
"symfony/stopwatch": "7.1.*",
"symfony/web-profiler-bundle": "7.1.*"
},
"config": {
"preferred-install": {
Expand Down Expand Up @@ -100,7 +100,7 @@
"extra": {
"symfony": {
"allow-contrib": true,
"require": "7.0.*",
"require": "7.1.*",
"docker": false
}
}
Expand Down
Loading

0 comments on commit d52db41

Please sign in to comment.