This repository has been archived on 2026-07-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
espocrm-base/tests/testData/Utils/Config/config.php
T
2014-03-12 17:36:32 +02:00

37 lines
695 B
PHP

<?php
return array (
'database' =>
array (
'driver' => 'mysqli',
'host' => 'localhost',
'dbname' => 'espocrm',
'user' => 'root',
'password' => '',
),
'logger' =>
array (
'dir' => 'data/logs',
'file' => 'espo.log',
'level' => 'DEBUG',
),
'useCache' => false,
'recordsPerPage' => 20,
'recordsPerPageSmall' => 5,
'applicationName' => 'EspoCRM',
'timeZone' => '',
'dateFormat' => 'MM/DD/YYYY',
'timeFormat' => 'HH:mm',
'weekStart' => '1',
'thousandSeparator' => ',',
'decimalMark' => '.',
'currencyList' =>
array (
0 => 'USD',
1 => 'EUR',
),
'testOption' => 'Another Wrong Value',
'testOption2' => 'Test2',
);
?>