futureoriented / laravel-flysystem-azure
Laravel Azure storage service provider
Installs: 1 101
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 0
Forks: 2
Open Issues: 0
Requires
- php: >=5.6.4
- futureoriented/flysystem-azure-adapter: ~1.0.0
- illuminate/support: 5.3.* || 5.4.* || 5.5.*
This package is not auto-updated.
Last update: 2025-03-30 07:05:43 UTC
README
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()
.