Superbalist / laravel-google-cloud-storage

A Google Cloud Storage filesystem for Laravel
MIT License
508 stars 145 forks source link

Error: Class 'GuzzleHttp\Utils' not found #88

Open dfrazao opened 4 years ago

dfrazao commented 4 years ago

Hello, I'm getting this error when trying to upload an image to a bucket:

image

This is my code: $extension = $request->profilePhoto->extension(); $filename = $id.'.'.$extension; $disk = Storage::disk('gcs'); $disk->put('profilePhotos/'.$filename, $file);

I'm using laravel 7.0 and the latest release of laravel-google-cloud-storage (2.2.3), any help would be appreciated.