mirror of
https://github.com/doctrine/DoctrineMongoODMModule.git
synced 2026-03-23 22:32:11 +01:00
23 lines
538 B
PHP
23 lines
538 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'modules' => [
|
|
'Laminas\Cache',
|
|
'Laminas\Cache\Storage\Adapter\Memory',
|
|
'Laminas\Cache\Storage\Adapter\Filesystem',
|
|
'Laminas\Form',
|
|
'Laminas\Hydrator',
|
|
'Laminas\Paginator',
|
|
'Laminas\Router',
|
|
'Laminas\Validator',
|
|
'DoctrineModule',
|
|
'DoctrineMongoODMModule',
|
|
],
|
|
'module_listener_options' => [
|
|
'config_glob_paths' => ['./tests/testing.config.php'],
|
|
'module_paths' => ['../vendor'],
|
|
],
|
|
];
|