Symfony 4 S3Client::factory 问题:'class Aws\S3\S3Client not found'

Symfony 4 S3Client::factory issue: 'class Aws\S3\S3Client not found'

我正在从 aws 存储桶中尝试 getObject(),但是在尝试 s3Client 时,出现错误:'class Aws\S3\S3Client not found'

$s3Client = S3Client::factory([
  'credentials' => [
  'key'    => $key,
  'secret' => $secret
  ],
'region' => $region,
'version' => 'latest',
'scheme' => 'http'
             ]);

好像没有安装aws skd。尝试通过命令安装

composer require aws/aws-sdk-php