@@ -29,12 +29,6 @@ public function getTestDetails()
29
29
// only requires doctrine/dbal. But we're testing with the ORM,
30
30
// so let's install it
31
31
->addExtraDependencies ('doctrine/orm:@stable ' )
32
- /*
33
- * @legacy doctrine/migrations does not support psr/log >=2
34
- * some symfony components use psr/log ^1 || ^2 || ^3
35
- * once doctrine/migrations supports psr log >= 2, this line can be removed.
36
- */
37
- ->addExtraDependencies ('psr/log:^1.1.4 ' )
38
32
->assert (function (string $ output , string $ directory ) {
39
33
$ this ->assertStringContainsString ('Success ' , $ output );
40
34
@@ -60,12 +54,6 @@ public function getTestDetails()
60
54
// sync the database, so no changes are needed
61
55
->configureDatabase ()
62
56
->addExtraDependencies ('doctrine/orm:@stable ' )
63
- /*
64
- * @legacy doctrine/migrations does not support psr/log >=2
65
- * some symfony components use psr/log ^1 || ^2 || ^3
66
- * once doctrine/migrations supports psr log >= 2, this line can be removed.
67
- */
68
- ->addExtraDependencies ('psr/log:^1.1.4 ' )
69
57
->assert (function (string $ output , string $ directory ) {
70
58
$ this ->assertStringNotContainsString ('Success ' , $ output );
71
59
@@ -83,12 +71,6 @@ public function getTestDetails()
83
71
->configureDatabase (false )
84
72
->addRequiredPackageVersion ('doctrine/doctrine-migrations-bundle ' , '>=3 ' )
85
73
->addExtraDependencies ('doctrine/orm:@stable ' )
86
- /*
87
- * @legacy doctrine/migrations does not support psr/log >=2
88
- * some symfony components use psr/log ^1 || ^2 || ^3
89
- * once doctrine/migrations supports psr log >= 2, this line can be removed.
90
- */
91
- ->addExtraDependencies ('psr/log:^1.1.4 ' )
92
74
// generate a migration first
93
75
->addPreMakeCommand ('php bin/console make:migration ' )
94
76
->assert (function (string $ output , string $ directory ) {
@@ -108,12 +90,6 @@ public function getTestDetails()
108
90
->configureDatabase (false )
109
91
->addRequiredPackageVersion ('doctrine/doctrine-migrations-bundle ' , '>=3 ' )
110
92
->addExtraDependencies ('doctrine/orm:@stable ' )
111
- /*
112
- * @legacy doctrine/migrations does not support psr/log >=2
113
- * some symfony components use psr/log ^1 || ^2 || ^3
114
- * once doctrine/migrations supports psr log >= 2, this line can be removed.
115
- */
116
- ->addExtraDependencies ('psr/log:^1.1.4 ' )
117
93
// generate a migration first
118
94
->addPreMakeCommand ('php bin/console make:migration ' )
119
95
->assert (function (string $ output , string $ directory ) {
0 commit comments