diskfloppy.me/config/services.php

26 lines
738 B
PHP
Raw Permalink 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'),
2024-08-08 14:21:30 +00:00
],
'lanyard' => [
'user_id' => env('DISCORD_USER_ID'),
],
'weatherlink' => env('WEATHERLINK_IP')
2023-06-13 20:59:16 +00:00
];