Git Repository Public Repository

namibia

URLs

Copy to Clipboard
 
df0489e1eeeeab5a9bd44e1d84fce49924fe1bac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?php
/**
 * Global Configuration Override
 *
 * You can use this file for overriding configuration values from modules, etc.
 * You would place values in here that are agnostic to the environment and not
 * sensitive to security.
 *
 * @NOTE: In practice, this file will typically be INCLUDED in your source
 * control, so do not include passwords or other sensitive information in this
 * file.
 */

return array(
	'DateTimeFormat'  => 'Y-m-d H:i:s',
	'DateFormat'      => 'Y-m-d',
	'TimeFormat'      => 'H:i:s',
	'Host'            => 'http://www.bid4cars.co.za',
    'CashCarsHost'    => 'http://www.wepay4cars.co.za',
	'DocumentUrl'     => 'http://www.bid4cars.co.za/documents/',
	'DocumentPath'    => __DIR__ . '/../../public/documents/',
	'ImageUrl'        => 'http://www.bid4cars.co.za/img/bin/',
	'ImagePath'       => __DIR__ . '/../../public/img/bin/',
	'ThumbnailUrl'    => 'http://www.bid4cars.co.za/img/bin/thumbnail/',
	'ThumbnailPath'   => __DIR__ . '/../../public/img/bin/thumbnail/',
	'VideoUrl'        => 'http://www.bid4cars.co.za/videos/',
	'VideoPath'       => __DIR__ . '/../../public/videos/',
	'ProjectRootPath' => __DIR__ . '/../../',
	'SMS'             => array(
		'Username' => 'SHANEK',
		'Password' => 'Shanek21',
		'ApiId'    => '3414263'
	),
	'Transunion'      => array(
		'Username' => 'Bid4Cars01',
		'Password' => 'B1d4C@rS!*@'
	),
	'service_manager' => array(
		'factories' => array(
			'doctrine.cache.zcache' => function ($sm)
			{
				$cache = new \Doctrine\Common\Cache\ZendShmCache();
				return $cache;
			},
		),
	),
	'doctrine'        => array(
		'connection'    => array(
			'orm_default' => array(
				'driverClass' => 'Doctrine\DBAL\Driver\PDOMySql\Driver',
				'params'      => array(
					'host'    => 'localhost',
					'port'    => '3306',
					'dbname'  => 'mig_db',
					'charset' => 'utf8'
				)
			)
		),
		'configuration' => array(
			'orm_default' => array(
				'generate_proxies' => false,
				'proxy_namespace'  => 'DoctrineProxies',
				'metadata_cache'   => IS_DEV_ENV ? 'array' : 'zcache',
				'query_cache'      => IS_DEV_ENV ? 'array' : 'zcache',
				'result_cache'     => IS_DEV_ENV ? 'array' : 'zcache'
			)
		),
	)
);

Commits for namibiaconfig/autoload/global.php

Diff revisions: vs.
Revision Author Commited Message
df0489 ... Mark Fri 14 Oct, 2016 10:01:00 +0000

initial commit