forked from digitonic/iex-cloud-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php
executable file
·62 lines (56 loc) · 2.17 KB
/
config.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
<?php
return [
/*
|--------------------------------------------------------------------------
| Sandbox Mode
|--------------------------------------------------------------------------
|
| When sandbopx mode is enabled all apis will be performed against the
| sandbox base url by default. All data returned from this endpoint
| will be manipulated values and won't contain real data.
|
*/
'sandbox' => env('IEX_CLOUD_SANDBOX', false),
/*
|--------------------------------------------------------------------------
| Sandbox Base URL
|--------------------------------------------------------------------------
|
| Specify which Sandbox API should be used when sandbox = true
|
*/
'sandbox_base_url' => 'https://sandbox.iexapis.com/v1/',
/*
|--------------------------------------------------------------------------
| Base URL
|--------------------------------------------------------------------------
|
| IEX Cloud will release new versions when they make backwards-incompatible
| changes to the API. Use the Base URL configuration to determine which
| version of the API should be used.
|
*/
'base_url' => env('IEX_CLOUD_BASE_URL', 'https://cloud.iexapis.com/v1/'),
/*
|--------------------------------------------------------------------------
| Secret API Token
|--------------------------------------------------------------------------
|
| Secret API tokens should be kept confidential and only stored on your
| own servers. Your account’s secret API token can perform any
| API request to IEX Cloud.
|
*/
'secret_key' => env('IEX_CLOUD_SECRET_KEY'),
/*
|--------------------------------------------------------------------------
| Publishable API Token
|--------------------------------------------------------------------------
|
| Publishable API tokens are meant solely to identify your account with
| IEX Cloud, they aren’t secret. They can be published in places like
| your website JavaScript code, or in an iPhone or Android app.
|
*/
'public_key' => env('IEX_CLOUD_PUBLIC_KEY')
];