33 lines
1003 B
PHP
33 lines
1003 B
PHP
<?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.
|
|
|
|
|
*/
|
|
|
|
'backblaze_b2' => [
|
|
'auth_url' => 'https://api.backblazeb2.com/b2api/v2/b2_authorize_account'
|
|
],
|
|
|
|
'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'
|
|
],
|
|
|
|
'recaptcha' => [
|
|
'verify_url' => 'https://www.google.com/recaptcha/api/siteverify'
|
|
]
|
|
];
|