diskfloppy.me/config/services.php

23 lines
671 B
PHP
Raw Normal View History

2023-06-13 20:59:16 +00:00
<?php
return [
/*
|--------------------------------------------------------------------------
| Third Party Services
|--------------------------------------------------------------------------
|
| This file is for storing the credentials for third party services such
| as Mailgun, Postmark, AWS and more. This file provides the de facto
| location for this type of information, allowing packages to have
| a conventional file to locate the various service credentials.
|
*/
2023-06-13 22:07:20 +00:00
'lastfm' => [
'key' => env('LASTFM_KEY'),
2023-06-14 21:05:01 +00:00
'user' => env('LASTFM_USER'),
'toptracks' => env('LASTFM_TOP_TRACKS')
2023-06-13 22:07:20 +00:00
]
2023-06-13 20:59:16 +00:00
];