mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
26 lines
765 B
PHP
26 lines
765 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
|
|
|
|
|
*/
|
|
|
|
'region' => env('AWS_REGION', 'us-east-1'),
|
|
'version' => 'latest',
|
|
'ua_append' => [
|
|
'L5MOD/' . AwsServiceProvider::VERSION,
|
|
],
|
|
];
|