You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
use Yiisoft\Db\Pgsql\Connection as PgsqlConnection;
49
+
use Yiisoft\Db\Pgsql\ConnectionPDO;
50
50
51
51
return [
52
52
ConnectionInterface::class => [
53
-
'class' => PgsqlConnection::class,
53
+
'class' => ConnectionPDO::class,
54
54
'__construct()' => [
55
55
'dsn' => $params['yiisoft/db-pgsql']['dsn']
56
56
],
@@ -107,6 +107,16 @@ use either newest or any specific version of PHP:
107
107
./vendor/bin/rector
108
108
```
109
109
110
+
### Composer require checker
111
+
112
+
This package uses [composer-require-checker](https://github.com/maglnet/ComposerRequireChecker) to check if all dependencies are correctly defined in `composer.json`.
113
+
114
+
To run the checker, execute the following command:
0 commit comments