Skip to content

Commit 9ad5301

Browse files
authored
chore: upgrade to Symfony 7 (#391)
1 parent be65b40 commit 9ad5301

29 files changed

+1465
-1349
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<p align="center">
1212
<a href="https://github.com/CodelyTV"><img src="https://img.shields.io/badge/CodelyTV-OS-green.svg?style=flat-square" alt="codely.tv"/></a>
1313
<a href="http://pro.codely.tv"><img src="https://img.shields.io/badge/CodelyTV-PRO-black.svg?style=flat-square" alt="CodelyTV Courses"/></a>
14-
<a href="#"><img src="https://img.shields.io/badge/Symfony-6-purple.svg?style=flat-square&logo=symfony" alt="Symfony 6"/></a>
14+
<a href="#"><img src="https://img.shields.io/badge/Symfony-7-purple.svg?style=flat-square&logo=symfony" alt="Symfony 7"/></a>
1515
<a href="https://shepherd.dev/github/CodelyTV/php-ddd-example"><img src="https://shepherd.dev/github/CodelyTV/php-ddd-example/coverage.svg" alt="Type Coverage"/></a>
1616
<a href="https://github.com/CodelyTV/php-ddd-example/actions"><img src="https://github.com/CodelyTV/php-ddd-example/workflows/CI/badge.svg?branch=master" alt="CI pipeline status" /></a>
1717
</p>

apps/backoffice/backend/src/BackofficeBackendKernel.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class BackofficeBackendKernel extends Kernel
1616
{
1717
use MicroKernelTrait;
1818

19-
private const CONFIG_EXTS = '.{xml,yaml}';
19+
private const string CONFIG_EXTS = '.{xml,yaml}';
2020

2121
public function registerBundles(): iterable
2222
{

apps/backoffice/frontend/src/BackofficeFrontendKernel.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class BackofficeFrontendKernel extends Kernel
1616
{
1717
use MicroKernelTrait;
1818

19-
private const CONFIG_EXTS = '.{xml,yaml}';
19+
private const string CONFIG_EXTS = '.{xml,yaml}';
2020

2121
public function registerBundles(): iterable
2222
{

apps/mooc/backend/src/MoocBackendKernel.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class MoocBackendKernel extends Kernel
1616
{
1717
use MicroKernelTrait;
1818

19-
private const CONFIG_EXTS = '.{xml,yaml}';
19+
private const string CONFIG_EXTS = '.{xml,yaml}';
2020

2121
public function registerBundles(): iterable
2222
{

composer.json

+11-11
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
"ext-zend-opcache": "*",
1313
"ext-pdo": "*",
1414

15-
"symfony/framework-bundle": "^6",
16-
"symfony/messenger": "^6",
17-
"symfony/dotenv": "^6",
18-
"symfony/yaml": "^6",
19-
"symfony/twig-bundle": "^6",
20-
"symfony/validator": "^6",
21-
"symfony/cache": "^6",
15+
"symfony/framework-bundle": "^7",
16+
"symfony/messenger": "^7",
17+
"symfony/dotenv": "^7",
18+
"symfony/yaml": "^7",
19+
"symfony/twig-bundle": "^7",
20+
"symfony/validator": "^7",
21+
"symfony/cache": "^7",
2222

2323
"lambdish/phunctional": "^2",
2424

@@ -41,16 +41,16 @@
4141
"roave/security-advisories": "dev-master",
4242

4343
"behat/behat": "^3.13",
44-
"friends-of-behat/mink-extension": "2.6.1",
45-
"friends-of-behat/symfony-extension": "2.3.1",
46-
"behat/mink-browserkit-driver": "2.1.0",
44+
"friends-of-behat/mink-extension": "2.7.5",
45+
"friends-of-behat/symfony-extension": "2.6.0",
46+
"behat/mink-browserkit-driver": "2.2.0",
4747

4848
"phpunit/phpunit": "^9",
4949
"mockery/mockery": "^1",
5050

5151
"fakerphp/faker": "^1",
5252

53-
"symfony/error-handler": "^6",
53+
"symfony/error-handler": "^7",
5454

5555
"symplify/easy-coding-standard": "^12.0",
5656
"vimeo/psalm": "^5.15",

0 commit comments

Comments
 (0)