mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
6ea74bf7bd
* chore(deps-dev): bump phpunit/phpunit from 7.5.18 to 7.5.19 Bumps [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit) from 7.5.18 to 7.5.19. - [Release notes](https://github.com/sebastianbergmann/phpunit/releases) - [Changelog](https://github.com/sebastianbergmann/phpunit/blob/7.5.19/ChangeLog-7.5.md) - [Commits](https://github.com/sebastianbergmann/phpunit/compare/7.5.18...7.5.19) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> * Apply fixes from StyleCI (#1165) Co-authored-by: Phan An <me@phanan.net>
29 lines
889 B
PHP
29 lines
889 B
PHP
<?php
|
|
|
|
use Aws\Laravel\AwsServiceProvider;
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| AWS SDK Configuration
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| The configuration options set in this file will be passed directly to the
|
|
| `Aws\Sdk` object, from which all client objects are created. The minimum
|
|
| required options are declared here, but the full set of possible options
|
|
| are documented at:
|
|
| http://docs.aws.amazon.com/aws-sdk-php/v3/guide/guide/configuration.html
|
|
|
|
|
*/
|
|
'credentials' => [
|
|
'key' => env('AWS_ACCESS_KEY_ID'),
|
|
'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
|
],
|
|
|
|
'region' => env('AWS_REGION', 'us-east-1'),
|
|
'version' => 'latest',
|
|
'ua_append' => [
|
|
'L5MOD/'.AwsServiceProvider::VERSION,
|
|
],
|
|
];
|