Skip to content

Commit

Permalink
chore: upgrade to Symfony 7 (#391)
Browse files Browse the repository at this point in the history
  • Loading branch information
rgomezcasas authored Aug 5, 2024
1 parent be65b40 commit 9ad5301
Show file tree
Hide file tree
Showing 29 changed files with 1,465 additions and 1,349 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<p align="center">
<a href="https://github.com/CodelyTV"><img src="https://img.shields.io/badge/CodelyTV-OS-green.svg?style=flat-square" alt="codely.tv"/></a>
<a href="http://pro.codely.tv"><img src="https://img.shields.io/badge/CodelyTV-PRO-black.svg?style=flat-square" alt="CodelyTV Courses"/></a>
<a href="#"><img src="https://img.shields.io/badge/Symfony-6-purple.svg?style=flat-square&logo=symfony" alt="Symfony 6"/></a>
<a href="#"><img src="https://img.shields.io/badge/Symfony-7-purple.svg?style=flat-square&logo=symfony" alt="Symfony 7"/></a>
<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>
<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>
</p>
Expand Down
2 changes: 1 addition & 1 deletion apps/backoffice/backend/src/BackofficeBackendKernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class BackofficeBackendKernel extends Kernel
{
use MicroKernelTrait;

private const CONFIG_EXTS = '.{xml,yaml}';
private const string CONFIG_EXTS = '.{xml,yaml}';

public function registerBundles(): iterable
{
Expand Down
2 changes: 1 addition & 1 deletion apps/backoffice/frontend/src/BackofficeFrontendKernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class BackofficeFrontendKernel extends Kernel
{
use MicroKernelTrait;

private const CONFIG_EXTS = '.{xml,yaml}';
private const string CONFIG_EXTS = '.{xml,yaml}';

public function registerBundles(): iterable
{
Expand Down
2 changes: 1 addition & 1 deletion apps/mooc/backend/src/MoocBackendKernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class MoocBackendKernel extends Kernel
{
use MicroKernelTrait;

private const CONFIG_EXTS = '.{xml,yaml}';
private const string CONFIG_EXTS = '.{xml,yaml}';

public function registerBundles(): iterable
{
Expand Down
22 changes: 11 additions & 11 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
"ext-zend-opcache": "*",
"ext-pdo": "*",

"symfony/framework-bundle": "^6",
"symfony/messenger": "^6",
"symfony/dotenv": "^6",
"symfony/yaml": "^6",
"symfony/twig-bundle": "^6",
"symfony/validator": "^6",
"symfony/cache": "^6",
"symfony/framework-bundle": "^7",
"symfony/messenger": "^7",
"symfony/dotenv": "^7",
"symfony/yaml": "^7",
"symfony/twig-bundle": "^7",
"symfony/validator": "^7",
"symfony/cache": "^7",

"lambdish/phunctional": "^2",

Expand All @@ -41,16 +41,16 @@
"roave/security-advisories": "dev-master",

"behat/behat": "^3.13",
"friends-of-behat/mink-extension": "2.6.1",
"friends-of-behat/symfony-extension": "2.3.1",
"behat/mink-browserkit-driver": "2.1.0",
"friends-of-behat/mink-extension": "2.7.5",
"friends-of-behat/symfony-extension": "2.6.0",
"behat/mink-browserkit-driver": "2.2.0",

"phpunit/phpunit": "^9",
"mockery/mockery": "^1",

"fakerphp/faker": "^1",

"symfony/error-handler": "^6",
"symfony/error-handler": "^7",

"symplify/easy-coding-standard": "^12.0",
"vimeo/psalm": "^5.15",
Expand Down
Loading

0 comments on commit 9ad5301

Please sign in to comment.