Timezones
AdditionalConfiguration.php
Go to the documentation of this file.
1<?php
2
3/*
4 * This file is part of the package thucke/timezones.
5 *
6 * For the full copyright and license information, please read the
7 * LICENSE file that was distributed with this source code.
8 */
9
10if (getenv('IS_DDEV_PROJECT') == 'true') {
11 $GLOBALS['TYPO3_CONF_VARS'] = array_replace_recursive(
12 $GLOBALS['TYPO3_CONF_VARS'],
13 [
14 'DB' => [
15 'Connections' => [
16 'Default' => [
17 'dbname' => 'db',
18 'host' => 'db',
19 'password' => 'db',
20 'port' => '3306',
21 'user' => 'db',
22 ],
23 ],
24 ],
25 // This GFX configuration allows processing by installed ImageMagick 6
26 'GFX' => [
27 'processor' => 'ImageMagick',
28 'processor_path' => '/usr/bin/',
29 'processor_path_lzw' => '/usr/bin/',
30 ],
31 // This mail configuration sends all emails to mailhog
32 'MAIL' => [
33 'transport' => 'smtp',
34 'transport_smtp_server' => 'localhost:1025',
35 ],
36 'SYS' => [
37 'trustedHostsPattern' => '.*.*',
38 'devIPmask' => '*',
39 'displayErrors' => 1,
40 ],
41 ]
42 );
43}
44if (getenv('IS_T3ACCEPTANCE_RUN') == 'true') {
45 $GLOBALS['TYPO3_CONF_VARS'] = array_replace_recursive(
46 $GLOBALS['TYPO3_CONF_VARS'],
47 [
48 'DB' => [
49 'Connections' => [
50 'Default' => [
51 'dbname' => 't3acceptance',
52 'password' => 'root',
53 'user' => 'root',
54 ],
55 ],
56 ],
57 ]
58 );
59}