You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516171819202122232425
  1. <?php
  2. use Aws\Laravel\AwsServiceProvider;
  3. return [
  4. /*
  5. |--------------------------------------------------------------------------
  6. | AWS SDK Configuration
  7. |--------------------------------------------------------------------------
  8. |
  9. | The configuration options set in this file will be passed directly to the
  10. | `Aws\Sdk` object, from which all client objects are created. This file
  11. | is published to the application config directory for modification by the
  12. | user. The full set of possible options are documented at:
  13. | http://docs.aws.amazon.com/aws-sdk-php/v3/guide/guide/configuration.html
  14. |
  15. */
  16. 'credentials' => false,
  17. 'region' => env('AWS_REGION', 'us-east-1'),
  18. 'version' => 'latest',
  19. 'ua_append' => [
  20. 'L5MOD/' . AwsServiceProvider::VERSION,
  21. ],
  22. ];