musa11971 /
laravel-tvdb
| 1 | <?php |
||
| 2 | |||
| 3 | return [ |
||
| 4 | |||
| 5 | /* |
||
| 6 | |-------------------------------------------------------------------------- |
||
| 7 | | TVDB API key |
||
| 8 | |-------------------------------------------------------------------------- |
||
| 9 | | |
||
| 10 | | This value is the API that was provided to you by TVDB |
||
| 11 | | |
||
| 12 | */ |
||
| 13 | |||
| 14 | 'api_key' => env('TVDB_API_KEY', null), |
||
|
0 ignored issues
–
show
Bug
introduced
by
Loading history...
|
|||
| 15 | |||
| 16 | /* |
||
| 17 | |-------------------------------------------------------------------------- |
||
| 18 | | TVDB username |
||
| 19 | |-------------------------------------------------------------------------- |
||
| 20 | | |
||
| 21 | | This value is your TVDB username |
||
| 22 | | |
||
| 23 | */ |
||
| 24 | |||
| 25 | 'username' => env('TVDB_USERNAME', null), |
||
| 26 | |||
| 27 | /* |
||
| 28 | |-------------------------------------------------------------------------- |
||
| 29 | | TVDB user key |
||
| 30 | |-------------------------------------------------------------------------- |
||
| 31 | | |
||
| 32 | | This value is the user key that was provided to you by TVDB |
||
| 33 | | |
||
| 34 | */ |
||
| 35 | |||
| 36 | 'user_key' => env('TVDB_USER_KEY', null) |
||
| 37 | ]; |