laravel-google-cloud-storage icon indicating copy to clipboard operation
laravel-google-cloud-storage copied to clipboard

A Google Cloud Storage filesystem for Laravel

Results 39 laravel-google-cloud-storage issues
Sort by recently updated
recently updated
newest added

Package works perfectly when ran on a local environmet (windows PC) but this error shows up when ran on a server (debdian)

I am trying to access last modified date of a particular file: $disk = Storage::disk('gcs'); $info = $disk->lastModified('file.jpg'); And I am getting the error I mentioned in title. I am...

I updated to latest version 2.2.1 and get that if i upload image to bucket.

Awaiting feedback

hi, when i use gcs like tuttorial, i get an error "Disk [gcs] does not have a configured driver.". I use laravel 7.24 and laravel-google-cloud-storage 2.2.3. filesystem.php `'gcs' => [...

Support for this was added in the main package [Superbalist/flysystem-google-cloud-storage](https://github.com/Superbalist/flysystem-google-cloud-storage), but was not added to this laravel integration yet. This PR fixes that. The commit that added metadata support to...

This is an automated pull request from [Shift](https://laravelshift.com) to update your package code and dependencies to be compatible with Laravel 9.x. **Before merging**, you need to: - Checkout the `l9-compatibility`...

Hi, I need to get the size of the directory (folder) in google storage recently I get list of the files in a directory and send request to storage to...

I'm using this package with spatie media library and get this error message `\n \"error\": {\n \"code\": 401,\n \"message\": \"Invalid Credentials\",\n \"errors\": [\n {\n \"message\": \"Invalid Credentials\",\n \"domain\": \"global\",\n \"reason\":...

We are using [Laravel Multy Tenancy](https://tenancyforlaravel.com/) package and when seeding tenants database the 'root' value defined in filesystems.php is not used. Any other time it is being used.

i'm trying to copy from a local disc to a gcs disk the simplified version here: ``` $from = 'local'; $localDisk = Storage::disk($from); $to = 'archive'; $archiveDisk = Storage::disk($to); print_r($archiveDisk->allFiles());...