-
Notifications
You must be signed in to change notification settings - Fork 251
Open
Description
Lines 55 to 62 in c1477b1
In Laravel find the `providers` key in your `config/app.php` and register the AWS Service Provider. | |
```php | |
'providers' => array( | |
// ... | |
Aws\Laravel\AwsServiceProvider::class, | |
) | |
``` |
New config for providers
lives under bootstrap/providers.php
:
<?php
return [
App\Providers\AppServiceProvider::class,
# ...
Aws\Laravel\AwsServiceProvider::class,
];
hipertom
Activity
[-]Providers/Aliases config has changed since Laravel 11[/-][+]Providersconfig has changed since Laravel 11[/+][-]Providersconfig has changed since Laravel 11[/-][+]Providers config has changed since Laravel 11[/+]avioli commentedon Mar 7, 2025
As far as I can tell the
alias
is no longer required, because of the below line in theAwsServiceProvider.php
:aws-sdk-php-laravel/src/AwsServiceProvider.php
Line 57 in c1477b1
It seems that
app('aws')->createClient(...)
produces a client.