biigle/laravel-azure-storage

Azure Storage Blob filesystem driver for Laravel

Maintainers

Package info

github.com/biigle/laravel-azure-storage

pkg:composer/biigle/laravel-azure-storage

Transparency log

Statistics

Installs: 100

Dependents: 0

Suggesters: 1

Stars: 0

v2.0.0 2026-08-03 12:48 UTC

This package is auto-updated.

Last update: 2026-08-03 12:51:12 UTC


README

A fork of Azure-OSS/azure-storage-php-adapter-laravel with BIIGLE-specific modifications.

Community-driven PHP SDKs for Azure, because Microsoft won't.

In November 2023, Microsoft officially archived their Azure SDK for PHP and stopped maintaining PHP integrations for most Azure services. No migration path, no replacement — just a repository marked read-only.

We picked up where they left off.

Screenshot

Package ecosystem

Install

composer require biigle/laravel-azure-storage

Documentation

You can read the documentation here.

Quickstart

# config/filesystems.php


'azure' => [
    'driver' => 'azure-storage-blob',
    'connection_string' => env('AZURE_STORAGE_CONNECTION_STRING'),
    'container' => env('AZURE_STORAGE_CONTAINER'),
],

Besides shared key via connection string, this driver supports additional authentication methods (like Entra ID / token-based credentials, managed identity, workload identity, and shared key via account key). See the docs for configuration examples: https://azure-oss.github.io/category/storage-blob-laravel/installation

License

This project is released under the MIT License. See LICENSE for details.