我收到以下错误:
FilesystemManager.php第179行中的FatalErrorException:类未找到"League \ Flysystem\AwsS3v3\AwsS3Adapter"
代码:
//Composer.json
"require": {
"php": ">=5.5.9",
"laravel/framework": "5.1.*",
"laravel/socialite": "~2.0",
"guzzlehttp/guzzle": "~4.0",
"predis/predis": "^1.0",
"tymon/jwt-auth": "0.5.*",
"league/flysystem-aws-s3-v2": "^1.0"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "~4.0",
"phpspec/phpspec": "~2.1"
}
//config/filesystem.php
'default' => 's3',
'cloud' => 's3',
'disks' => [
'local' => [
'driver' => 'local',
'root' => storage_path('app'),
],
's3' => [
'driver' => 's3',
'key' => '***********',
'secret' => '**************************************',
'region' => '*****',
'bucket' => '************',
],
],
//FileController
namespace AppHttpControllers;
use IlluminateHttpRequest;
use AppHttpRequests;
use IlluminateContractsFilesystemFilesystem;
use AppHttpControllersController;
use JWTAuth;
use TymonJWTAuthExceptionsJWTException;
public function postProfilePhoto(Request $request)
{
$token=JWTAuth::getToken();
$user = JWTAuth::toUser($token);
$image = $request->file('image');
//return $image;
$id=$user->id;
if($image)
{
$imageFileName = time() . '.' . $image->getClientOriginalExtension();
//return $imageFileName;
$s3 = Storage::disk('s3');
$filePath = '/profilePhotos/'.$id . $imageFileName;
$s3->put($filePath, file_get_contents($image), 'public');
try{
ProfilePhoto::create(['userId'=>$id,'imgUrl'=>$filePath]);
return json_encode(['message'=>'Done!','Id'=>200,'Response'=>'']);
}
catch(Exception $e)
{
return json_encode(['message'=>'Not Allowed!','Id'=>402,'Response'=>'']);
}
}
else
{
return json_encode(['message'=>'No Pic!','Id'=>404,'Response'=>'']);
}
}
您需要首先在控制台中运行:
composer remove league/flysystem-aws-s3-v2
然后你需要在控制台中运行:
composer require league/flysystem-aws-s3-v3:~1.0
以安装S3文件系统。
Laravel 5.1+需要V3版本,而不是V2版本。