FIxed the doctrine driver class.

feature/csv-import-asset-library
Ruslan Baidan 2022-06-21 15:09:07 +02:00
parent 74a13d269e
commit df8d8ac90d
3 changed files with 1497 additions and 1195 deletions

2686
composer.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -11,7 +11,7 @@
* file.
*/
use Doctrine\DBAL\Driver\PDOMySql\Driver;
use Doctrine\DBAL\Driver\PDO\MySQL\Driver;
use Monarc\Core\Service\DoctrineCacheServiceFactory;
use Monarc\Core\Service\DoctrineLoggerFactory;

View File

@ -20,7 +20,7 @@ return array(
'doctrine' => array(
'connection' => array(
'orm_default' => array(
'driverClass' => 'Doctrine\DBAL\Driver\PDOMySql\Driver',
'driverClass' => 'Doctrine\DBAL\Driver\PDO\MySQL\Driver',
'params' => array(
'host' => 'localhost',
'port' => 3306,
@ -34,7 +34,7 @@ return array(
),
),
'orm_cli' => array(
'driverClass' => 'Doctrine\DBAL\Driver\PDOMySql\Driver',
'driverClass' => 'Doctrine\DBAL\Driver\PDO\MySQL\Driver',
'params' => array(
'host' => 'localhost',
'port' => 3306,