Reputation: 137
I want to use AWS QLDB Client using aws sdk in laravel v7 I have followed all procedures written here. I'm getting this error
Aws\Laravel\AwsServiceProvider::class Not found
Upvotes: 2
Views: 3192
Reputation: 18926
Aws SDK PHP does not have a provider built in, it is for vanilla PHP. You will need to install the Laravel version of it, you can find the package on github.
Aws SDK PHP
PHP
Laravel
composer require aws/aws-sdk-php-laravel
Upvotes: 6