94 lines
3.0 KiB
PHP
94 lines
3.0 KiB
PHP
<?php
|
|
|
|
use Doctrine\Common\Proxy\AbstractProxyFactory;
|
|
|
|
$dataPath = getenv('TESTS_DIR') . '/data';
|
|
|
|
return [
|
|
'doctrine' => [
|
|
'connection' => [
|
|
'orm_default' => [
|
|
'params' => [
|
|
'host' => '127.0.0.1',
|
|
'user' => 'sqlmonarcuser',
|
|
'password' => 'sqlmonarcuser',
|
|
'dbname' => 'monarc_common_test',
|
|
'port' => 3306,
|
|
// To execute tests from your host machine uncomment these lines:
|
|
'options' => [
|
|
PDO::MYSQL_ATTR_SSL_KEY => '~/web/monarc/MonarcAppFO/vagrant/.vagrant/machines/default/virtualbox/private_key'
|
|
]
|
|
],
|
|
],
|
|
'orm_cli' => [
|
|
'params' => [
|
|
'host' => '127.0.0.1',
|
|
'user' => 'sqlmonarcuser',
|
|
'password' => 'sqlmonarcuser',
|
|
'dbname' => 'monarc_cli_test',
|
|
'port' => 3306,
|
|
// To execute tests from your host machine uncomment these lines:
|
|
'options' => [
|
|
PDO::MYSQL_ATTR_SSL_KEY => '~/web/monarc/MonarcAppFO/vagrant/.vagrant/machines/default/virtualbox/private_key'
|
|
]
|
|
],
|
|
],
|
|
],
|
|
'entitymanager' => [
|
|
'orm_default' => [
|
|
'connection' => 'orm_default',
|
|
'configuration' => 'orm_default'
|
|
],
|
|
'orm_cli' => [
|
|
'connection' => 'orm_cli',
|
|
'configuration' => 'orm_cli',
|
|
],
|
|
],
|
|
'configuration' => [
|
|
'orm_default' => [
|
|
'metadata_cache' => 'array',
|
|
'query_cache' => 'array',
|
|
'result_cache' => 'array',
|
|
'driver' => 'orm_default',
|
|
'generate_proxies' => AbstractProxyFactory::AUTOGENERATE_EVAL,
|
|
'filters' => [],
|
|
'datetime_functions' => [],
|
|
'string_functions' => [],
|
|
'numeric_functions' => [],
|
|
'second_level_cache' => [],
|
|
],
|
|
'orm_cli' => [
|
|
'metadata_cache' => 'array',
|
|
'query_cache' => 'array',
|
|
'result_cache' => 'array',
|
|
'driver' => 'orm_cli',
|
|
'generate_proxies' => AbstractProxyFactory::AUTOGENERATE_EVAL,
|
|
'filters' => [],
|
|
'datetime_functions' => [],
|
|
'string_functions' => [],
|
|
'numeric_functions' => [],
|
|
'second_level_cache' => [],
|
|
],
|
|
],
|
|
],
|
|
|
|
'activeLanguages' => ['fr', 'en', 'de', 'nl',],
|
|
|
|
'appVersion' => '3.0.0',
|
|
|
|
'checkVersion' => false,
|
|
'appCheckingURL' => 'https://version.monarc.lu/check/MONARC',
|
|
|
|
'email' => [
|
|
'name' => 'MONARC',
|
|
'from' => 'info@monarc.lu',
|
|
],
|
|
|
|
'mospApiUrl' => 'https://objects.monarc.lu/api/',
|
|
|
|
'monarc' => [
|
|
'ttl' => 60,
|
|
'salt' => '',
|
|
],
|
|
];
|