Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,18 +31,18 @@
}
},
"require-dev": {
"symfony/yaml": "^6.4|^7.0",
"symfony/validator": "^6.4|^7.0",
"phpstan/phpstan-symfony": "^1.0",
"assoconnect/php-quality-config": "^1.16",
"symfony/security-core": "^6.4|^7.0"
"symfony/yaml": "^7.0",
"symfony/validator": "^7.0",
"phpstan/phpstan-symfony": "^2",
"assoconnect/php-quality-config": "^2",
"symfony/security-core": "^7.0"
},
"require": {
"php": "^8.3",
"symfony/framework-bundle": "^6.4|^7.0",
"symfony/framework-bundle": "^7.0",
"doctrine/dbal": "^2.10|^3.0",
"symfony/serializer": "^6.4|^7.0",
"symfony/property-access": "^6.4|^7.0",
"symfony/serializer": "^7.0",
"symfony/property-access": "^7.0",
"doctrine/doctrine-bundle": "^2.11",
"doctrine/orm": "^2.9",
"moneyphp/money": "^3.2|^4.0",
Expand Down
13 changes: 3 additions & 10 deletions tests/Functional/App/TestKernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,9 @@ class TestKernel extends Kernel
{
public function registerBundles(): iterable
{
return [
new FrameworkBundle(),
new LogBundle(),
new DoctrineBundle(),
];
yield new FrameworkBundle();
yield new LogBundle();
yield new DoctrineBundle();
}

public function getCacheDir(): string
Expand All @@ -31,11 +29,6 @@ public function getLogDir(): string
return $this->basePath() . 'logs';
}

public function getRootDir(): string
{
return __DIR__;
}

/**
* {@inheritdoc}
*/
Expand Down
Loading