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\Sqlite\Connection as SqliteConnection;
49
+
use Yiisoft\Db\Sqlite\ConnectionPDO;
50
50
51
51
return [
52
52
ConnectionInterface::class => [
53
-
'class' => SqliteConnection::class,
53
+
'class' => ConnectionPDO::class,
54
54
'__construct()' => [
55
55
'dsn' => $params['yiisoft/db-sqlite']['dsn'],
56
56
]
@@ -101,6 +101,16 @@ use either newest or any specific version of PHP:
101
101
./vendor/bin/rector
102
102
```
103
103
104
+
### Composer require checker
105
+
106
+
This package uses [composer-require-checker](https://github.com/maglnet/ComposerRequireChecker) to check if all dependencies are correctly defined in `composer.json`.
107
+
108
+
To run the checker, execute the following command:
0 commit comments