Skip to content

Commit

Permalink
Merge pull request #107 from indjeto/symfony-7-support
Browse files Browse the repository at this point in the history
Symfony 7.0 support
  • Loading branch information
indjeto authored Aug 13, 2024
2 parents 090a78e + f9346db commit c4e724f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@
"doctrine/dbal": "^3.2|^4.0",
"doctrine/doctrine-bundle": "^2.9",
"doctrine/orm": "^2.13|^3.0",
"symfony/security-bundle": "^6.4",
"symfony/framework-bundle": "^6.4",
"symfony/console": "^6.4"
"symfony/security-bundle": "^6.4 | ^7.0",
"symfony/framework-bundle": "^6.4 | ^7.0",
"symfony/console": "^6.4 | ^7.0"
},
"require-dev": {
"ext-pdo": "*",
"ext-pdo_sqlite": "*",
"phpunit/phpunit": "^9",
"symfony/phpunit-bridge": "^6.4"
"symfony/phpunit-bridge": "^6.4 | ^7.0"
},
"autoload": {
"files": [
Expand Down
1 change: 0 additions & 1 deletion tests/TestKernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ public function registerContainerConfiguration(LoaderInterface $loader): void
$loader->load(function (ContainerBuilder $container): void {
$container->loadFromExtension('framework');
$container->loadFromExtension('security', [
'enable_authenticator_manager' => true,
'firewalls' => [
'main' => [
'security' => false,
Expand Down

0 comments on commit c4e724f

Please sign in to comment.