Looking to hire Laravel developers? Try LaraJobs

laravel-flysystem-azure maintained by akayaman

Description
Laravel Azure storage service provider
Last update
2020/09/09 11:29 (dev-master)
License
Links
Downloads
1 255

Comments
comments powered by Disqus

laravel-flysystem-azure

Laravel Azure blob storage service provider

Only for blob storage!

Usage

  • Register service provider in config/app.php.
'providers' => [
    AzureStorageServiceProvider::class,
]

If you are using Laravel >= 5.5, provider registration could be done by Laravel automaticly.

  • Register disk in config/filesystem.php.
'disks' => [
    'azure'  => [
        'driver' => 'azure',
        'account' => [
            'name' => env('AZURE_ACCOUNT_NAME'),
            'key' => env('AZURE_ACCOUNT_KEY'),
        ],
        'blob-endpoint' => env('AZURE_BLOB_ENDPOINT'),
        'container' => 'my-container'
    ]
]

You can register multiple azure containers with different disk names:

'disks' => [
    'azure-reports' => [
        'driver' => 'azure',
        'account' => [
            'name' => env('AZURE_ACCOUNT_NAME'),
            'key' => env('AZURE_ACCOUNT_KEY'),
        ],
        'blob-endpoint' => env('AZURE_BLOB_ENDPOINT'),
        'container' => 'reports'
    ],
    
    'azure-images' => [
        'driver' => 'azure',
        'account' => [
            'name' => env('AZURE_ACCOUNT_NAME'),
            'key' => env('AZURE_ACCOUNT_KEY'),
        ],
        'blob-endpoint' => env('AZURE_BLOB_ENDPOINT'),
        'container' => 'images'
    ]
]
  • Set azure account and key.

  • Use Storage::disk('azure')->get().