Skip to content

Commit

Permalink
Allow DBAL v2.3 to v3.x in Testing
Browse files Browse the repository at this point in the history
  • Loading branch information
zanbaldwin committed Apr 2, 2024
1 parent 4c57c59 commit 5128ad0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
},
"require-dev": {
"ext-pdo": "*",
"doctrine/dbal": "^2.3",
"doctrine/dbal": "^2.3 || ^3",
"phpunit/phpunit": "*"
},
"prefer-stable": true,
Expand Down
4 changes: 2 additions & 2 deletions tests/Doctrine/TestPlatform.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

namespace Darsyn\IP\Tests\Doctrine;

use Doctrine\DBAL\Platforms\MySqlPlatform;
use Doctrine\DBAL\Platforms\SqlitePlatform;

class TestPlatform extends MySqlPlatform
class TestPlatform extends SqlitePlatform
{
public function getBinaryTypeDeclarationSQL(array $column)
{
Expand Down

0 comments on commit 5128ad0

Please sign in to comment.