flysystem-bundle
flysystem-bundle copied to clipboard
Symfony bundle integrating Flysystem into Symfony 4.2+ applications
I think making a controller that will proxy the original image is a very common case that can be handle by the bundle (not by default though). What do you...
Hello, would it be possible to add serviceSettings as a parameter in the config for azure adapter, so we can make use of the temporary url feature? Or is there...
For example ```yaml flysystem: storages: default.storage: adapter: 'local' options: directory: '%kernel.project_dir%/var/storage/default' ``` `flysystem+default.storage://foo/bar/bat.csv` points to `%kernel.project_dir%/var/storage/default/foo/bar/bar/csv`. Similar to https://github.com/twistor/flysystem-stream-wrapper, but up to date. This wrapper works with recent Flysystem: https://github.com/m2mtech/flysystem-stream-wrapper...
This is a usage question / suggestion for doc improvement: When do I need to (explicitly) install `league/flysystem-bundle` vs `league/flysystem` vs one of the specific adapters (e.g. `league/flysystem-azure-blob-storage`)? I am...
It looks like there's a BunnyStorage adapter available at https://github.com/PlatformCommunity/flysystem-bunnycdn Can this be added to the list of Cloud Providers? Is there reason in particular it wouldn't work with the...
I want to minimize calls to S3 to get a large list which rarely changes. Is there a way to configure a cache? Perhaps DirectoryListing can be serialized and I...
I had to dig through both `league/flysystem-bundle` and `league/flysystem-google-cloud-storage` code to figure out why I am getting an error regarding ACLs in a uniform access bucket and how I can...
Hello, in https://github.com/thephpleague/flysystem/pull/1853 , the `league/flysystem-azure-blob-storage` is abandoned in favour of `azure-oss/storage-blob-flysystem`. Is there a plan to support it in configuration ? Thank you
I got an error when following the docs: ``` "Unrecognized option "readonly" under "flysystem.storages.legacy.upload.storage". Did you mean "read_only"?" ``` It seems that [the docs](https://github.com/thephpleague/flysystem-bundle/blob/3.x/docs/1-getting-started.md#using-read-only-to-disallow-any-write-operations) refer to `readonly`, but the code...
Before merging this PR: https://github.com/thephpleague/flysystem-bundle/pull/182 I suggested [in this comment](https://github.com/thephpleague/flysystem-bundle/pull/182#issuecomment-2888539935) a rework of parts of the bundle to improve separation of concerns and provide a better developer experience (DX), in...