2016-09-01 16:23:39 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Third Party Services
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| This file is for storing the credentials for third party services such
|
|
|
|
| as Stripe, Mailgun, SparkPost and others. This file provides a sane
|
|
|
|
| default location for this type of information, allowing packages
|
|
|
|
| to have a conventional place to find your various credentials.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2019-09-09 20:35:32 +01:00
|
|
|
'backblaze_b2' => [
|
2019-09-09 21:52:26 +01:00
|
|
|
'auth_url' => 'https://api.backblazeb2.com/b2api/v2/b2_authorize_account',
|
|
|
|
'download_token_lifetime' => 300
|
2019-09-09 20:35:32 +01:00
|
|
|
],
|
|
|
|
|
2019-09-15 21:37:41 +01:00
|
|
|
'dropbox' => [
|
|
|
|
'download_url' => 'https://content.dropboxapi.com/2/files/download',
|
|
|
|
'upload_url' => 'https://content.dropboxapi.com/2/files/upload'
|
|
|
|
],
|
|
|
|
|
2018-07-29 21:58:28 +01:00
|
|
|
'gitea' => [
|
|
|
|
'api_url' => 'https://apps.andysh.uk/api/v1',
|
|
|
|
'cache_time_seconds' => 3600,
|
|
|
|
'releases_url' => 'https://apps.andysh.uk/%s/%s/releases',
|
|
|
|
'repo_name' => 'blue-twilight',
|
|
|
|
'repo_owner' => 'aheathershaw'
|
2017-10-01 16:48:50 +01:00
|
|
|
],
|
|
|
|
|
2016-09-08 11:02:49 +01:00
|
|
|
'recaptcha' => [
|
|
|
|
'verify_url' => 'https://www.google.com/recaptcha/api/siteverify'
|
|
|
|
]
|
2016-09-01 16:23:39 +01:00
|
|
|
];
|