You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
586 B
25 lines
586 B
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Dots Platform API Configuration
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This file is for storing the credentials for the Dots Platform API.
|
|
| The file provides information about the keys to access the API.
|
|
|
|
|
*/
|
|
|
|
'base_url' => env('DOTS_BASE_URL'),
|
|
|
|
'api_token' => env('DOTS_API_TOKEN'),
|
|
|
|
'api_account_token' => env('DOTS_API_ACCOUNT_TOKEN'),
|
|
|
|
'api_auth_token' => env('DOTS_API_AUTH_TOKEN'),
|
|
|
|
];
|
|
|