Skip to content

Commit b5fb917

Browse files
authored
Allow using doctrine/dbal ^3.0 (#38)
1 parent ebd5770 commit b5fb917

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"doctrine/annotations": "^1.8",
2121
"doctrine/cache": "^1.9.1",
2222
"doctrine/common": "^2.11|^3.0",
23-
"doctrine/dbal": "^2.9.3",
23+
"doctrine/dbal": "^2.12|^3.0",
2424
"doctrine/event-manager": "^1.1",
2525
"doctrine/orm": "^2.7",
2626
"doctrine/persistence": "^1.3|^2.0"

tests/Webfactory/Doctrine/Config/ExistingConnectionConfigurationTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public function testWorksWithInfrastructure()
4545

4646
$infrastructure->import(new TestEntity());
4747

48-
$this->assertEquals(1, $this->connection->fetchColumn('SELECT COUNT(*) FROM test_entity'));
48+
$this->assertEquals(1, $this->connection->fetchOne('SELECT COUNT(*) FROM test_entity'));
4949
}
5050

5151
}

0 commit comments

Comments
 (0)