-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparams.php
executable file
·74 lines (64 loc) · 2.11 KB
/
params.php
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
70
71
72
73
74
<?php
return [
'adminEmail' => '[email protected]',
'senderEmail' => '[email protected]',
'supportEmail' => '[email protected]',
'user.passwordResetTokenExpire' => 3600,
'stripePublicKey' => '1234',
'stripePrivateKey' => '1234',
'shopifyPublicKey' => '5678',
'shopifyPrivateKey' => '5678',
'encryptionKey' => 'secret',
'digitalOceanKey' => 'key',
'digitalOceanSecret' => 'secret',
'defaultSpace' => 'dev-getshipwise',
'coldco' => [
'baseUrl' => 'https://secure-wms.com',
'clientId' => 'lolno',
'secret' => 'lulz',
],
/**
* Shopify App Parameters and App Credentials
*/
/**
* Put here default values for when customers meta value does not exist
* @see \common\components\CustomerSettings
*/
'globalCustomerSettings' => [
// FedEx API credentials
'fedex_api_account' => '',
'fedex_api_meter' => '',
'fedex_api_key' => '',
'fedex_api_password' => '',
// UPS API credentials
'ups_api_account' => '',
'ups_api_user_id' => '',
'ups_api_password' => '',
'ups_api_key' => '',
// Amazon MWS credentials
'amazon_mws_seller_id' => '',
'amazon_mws_auth_token' => '',
'amazon_mws_aws_access_key_id' => '',
'amazon_mws_aws_secret_key' => '',
],
/**
* ShipWise invoicing info
*/
'invoicing' => [
'company' => 'ShipWise',
'address' => 'PO Box 812',
'city' => 'East Troy',
'state' => 'WI',
'zip' => '53120',
'email' => '[email protected]',
'phone' => '(262) 342-6638',
],
'hookdeckSigningSecret' => '1234',
'csvBoxS3Key' => '',
'csvBoxS3Secret' => '',
'csvBoxS3Region' => '',
'csvBoxS3Bucket' => '',
'speedeeFtpHost' => '',
'speedeeFtpUser' => 123,
'speedeeFtpPass' => '',
];