Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 550 Bytes

adapter_ziparchive.md

File metadata and controls

18 lines (15 loc) · 550 Bytes

Use the ZipArchive adapter

This adapter works with the standard PHP ZipArchive implementation which is documented in the manual. You have to provide at least a value for the location key.

# app/config/config.yml
oneup_flysystem:
    adapters:
        my_adapter:
            zip:
                location: "%kernel.root_dir%/Resources/fs.zip"
                archive: ~

More to know