Skip to content

Commit 2764227

Browse files
committed
⬆️ Symfony 6 support
1 parent 501bc43 commit 2764227

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed

DependencyInjection/TdbmExtension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
namespace TheCodingMachine\TDBM\Bundle\DependencyInjection;
55

66

7-
use BrainDiminished\SchemaVersionControl\SchemaVersionControlService;
87
use Doctrine\Common\Cache\FilesystemCache;
98
use Doctrine\Common\Cache\VoidCache;
109
use Doctrine\DBAL\Connection;
@@ -23,6 +22,7 @@
2322
use TheCodingMachine\TDBM\Configuration as TDBMConfiguration;
2423
use TheCodingMachine\TDBM\ConfigurationInterface;
2524
use TheCodingMachine\TDBM\Schema\LockFileSchemaManager;
25+
use TheCodingMachine\TDBM\SchemaVersionControl\SchemaVersionControlService;
2626
use TheCodingMachine\TDBM\TDBMService;
2727
use TheCodingMachine\TDBM\Utils\Annotation\AnnotationParser;
2828
use TheCodingMachine\TDBM\Utils\CodeGeneratorListenerInterface;

composer.json

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,19 @@
2222
],
2323
"require" : {
2424
"php": "^7.4 || ^8.0",
25-
"thecodingmachine/tdbm": "~5.3.0",
25+
"thecodingmachine/tdbm": "dev-updates-for-sf6 as 5.3.99",
2626
"doctrine/doctrine-bundle": "^2",
2727
"doctrine/orm": "^2",
28-
"symfony/http-kernel": "^4.1.9 || ^5"
28+
"symfony/http-kernel": "^4.1.9 || ^5.0 || ^6.0"
2929
},
3030
"require-dev": {
3131
"roave/security-advisories": "dev-master",
32-
"symfony/security-bundle": "^4.1.9 || ^5",
33-
"symfony/yaml": "^4.1.9 || ^5",
32+
"symfony/security-bundle": "^4.1.9 || ^5 || ^6",
33+
"symfony/yaml": "^4.1.9 || ^5 || ^6",
3434
"phpunit/phpunit": "^9.5",
3535
"phpstan/phpstan": "^1.2",
36-
"thecodingmachine/tdbm-fluid-schema-builder": "^1.0.0",
37-
"symfony/framework-bundle": "^5.2"
36+
"thecodingmachine/tdbm-fluid-schema-builder": "^1.0 || ^2.0",
37+
"symfony/framework-bundle": "^6.2"
3838
},
3939
"scripts": {
4040
"phpstan": "phpstan analyse TdbmBundle.php DependencyInjection/ Utils/ -c phpstan.neon --level=8 --no-progress"
@@ -54,6 +54,12 @@
5454
"dev-master": "5.3.x-dev"
5555
}
5656
},
57+
"repositories": [
58+
{
59+
"type": "vcs",
60+
"url": "https://github.com/daetcm/tdbm"
61+
}
62+
],
5763
"minimum-stability": "dev",
5864
"prefer-stable": true
5965
}

0 commit comments

Comments
 (0)