2

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

Malik Hanzala
  • 127
  • 1
  • 6

1 Answers1

6

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
mrhn
  • 17,961
  • 4
  • 27
  • 46