We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
aws-sdk-php-laravel/README.md
Lines 55 to 62 in c1477b1
New config for providers lives under bootstrap/providers.php:
providers
bootstrap/providers.php
<?php return [ App\Providers\AppServiceProvider::class, # ... Aws\Laravel\AwsServiceProvider::class, ];
The text was updated successfully, but these errors were encountered:
As far as I can tell the alias is no longer required, because of the below line in the AwsServiceProvider.php:
alias
AwsServiceProvider.php
aws-sdk-php-laravel/src/AwsServiceProvider.php
Line 57 in c1477b1
It seems that app('aws')->createClient(...) produces a client.
app('aws')->createClient(...)
Sorry, something went wrong.
No branches or pull requests
aws-sdk-php-laravel/README.md
Lines 55 to 62 in c1477b1
New config for
providers
lives underbootstrap/providers.php
:The text was updated successfully, but these errors were encountered: