Skip to content

Commit cac490a

Browse files
committed
Updating composer.json to correctly point to current development branch for laminas-db
Signed-off-by: Joey Smith <jsmith@webinertia.net> Signed-off-by: Joey Smith <jsmith@webinertia.net>
1 parent 76859bc commit cac490a

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
],
3838
"require": {
3939
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
40-
"laminas/laminas-db": "dev-adapter-migration-mysql-with-driver-feature"
40+
"laminas/laminas-db": "dev-adapter-migration-mysql-new"
4141
},
4242
"require-dev": {
4343
"ext-mysqli": "*",
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
namespace LaminasTest\Db\Adapter\Mysql\Container;
6+
7+
use Laminas\Db\Adapter\Mysql\Container\AdapterFactory;
8+
use Laminas\Db\Adapter\AdapterInterface;
9+
use Laminas\ServiceManager\ServiceManager;
10+
use PHPUnit\Framework\TestCase;
11+
use Psr\Container\ContainerInterface;
12+
13+
final class AdapterFactoryTest extends TestCase
14+
{
15+
protected function setUp(): void
16+
{
17+
18+
}
19+
}

0 commit comments

Comments
 (0)