Malik Hanzala
Malik Hanzala

Reputation: 137

Laravel Aws\Laravel\AwsServiceProvider::class Not found

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

Answers (1)

mrhn
mrhn

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.

composer require aws/aws-sdk-php-laravel

Upvotes: 6

Related Questions