mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
25 lines
741 B
PHP
25 lines
741 B
PHP
<?php
|
|
|
|
return [
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| MyceliumGear authorization configuration
|
|
|--------------------------------------------------------------------------
|
|
*/
|
|
'gateway_id' => env('MYCELIUM_GATEWAY_ID', ''),
|
|
'gateway_secret' => env('MYCELIUM_GATEWAY_SECRET', ''),
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Default configuration
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Define default callback data that will be used before any custom data are set
|
|
*/
|
|
'defaults' => [
|
|
'callback_data' => [
|
|
//'foo' => 'bar'
|
|
],
|
|
],
|
|
];
|