flysystem-azure-blob-storage
flysystem-azure-blob-storage copied to clipboard
Adapter could create containers on demand if configured without a container name. See https://github.com/KnpLabs/Gaufrette/pull/486 as an example where I did the same thing for Gaufrette.
Moving or copying files does not seem to work with the storage adapter: ``` >>> $disk->assertAbsent("Background.png") League\Flysystem\FileExistsException with message 'File already exists at path: Background.png' >>> $disk->assertPresent("BackgroundNew.png") League\Flysystem\FileNotFoundException with message...
Hello, is there already an adapter for flysystem V2, e.g. like the V2 adapter for AWS S3 here: https://flysystem.thephpleague.com/v2/docs/adapter/aws-s3-v3/ Thank you very much!
This PR adds compatibility with `guzzlehttp/psr7` v2, resolving conflicts with other packages that require it for Guzzle 7 + PHP 8 compatibility. The only breaking change this package was affected...
I'm having issues where when a file is copied from one Azure Blob file stream URI to another via the PHP copy function the newly created file is empty. So,...
Hi, since a few days I'm experiencing the following problem: the `listContents` method returns also soft deleted files. Is there any option to exclude them from the response? Thank you
The Laravel section of the FlySystem docs only directs to the Laravel manual section on File Systems, which contains examples of configuring s3 connections, but not Azure Blob connections. At...
Currently with these properties being private extending the adapter is basically a full copy/paste. Changing these properties to protected doesn't change the public API but does allow us to use...
This implements recursive directory creation and metadata fallback. These are needed to properly emulate directories in Azure.