743

Product support

Get help in the plugin support forum.

  • Added on Oct 31, 2016
  • Current version: 1.0.1
  • Platform Compatibility
    v3.x not tested
    v2.x not tested
    v1.x use latest
  • Created by
  • Public repository

Categories

This plugin adds a Filesystem driver for Microsoft Azure Blob Storage.

It adds a custom Service Provider for Azure and adds the league/flysystem-azure composer package.

Using the Azure driver

After installing the plugin, simply add another disk in config/filesystems.php. You will need your Azure Blob account name, API key and container name.

'disks' => [
    'azure' => [
        'driver' => 'azure',
        'account' => 'my-azure-account',
        'key' => 'my-api-key',
        'container' => 'my-container-name'
    ]
]

You can create as many disks as you want.

1.0.1

Adds Azure filestorage

Oct 29, 2016