Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 557 Bytes

use-flysystem-bundle.md

File metadata and controls

33 lines (24 loc) · 557 Bytes

Use league/flysystem-bundle

Installation

$ composer require league/flysystem-bundle

Configure the storage

# config/packages/flysystem.yml
flysystem:
   storages:
        docusign.storage:
            adapter: 'local'
            options:
                directory: '%kernel.project_dir%/var/storage/default'

Configure the signature

You need to define as storage the name of the flysystem storage.

# config/packages/docusign.yml

docusign:
    # ...
    storage: 'docusign.storage'

Go back