PHPackages                             futureoriented/laravel-flysystem-azure - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [File &amp; Storage](/categories/file-storage)
4. /
5. futureoriented/laravel-flysystem-azure

ActiveLibrary[File &amp; Storage](/categories/file-storage)

futureoriented/laravel-flysystem-azure
======================================

Laravel Azure storage service provider

v1.0.2(8y ago)41.1k2MITPHPPHP &gt;=5.6.4

Since Nov 13Pushed 8y agoCompare

[ Source](https://github.com/futureoriented/laravel-flysystem-azure)[ Packagist](https://packagist.org/packages/futureoriented/laravel-flysystem-azure)[ RSS](/packages/futureoriented-laravel-flysystem-azure/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (2)Versions (4)Used By (0)

laravel-flysystem-azure
=======================

[](#laravel-flysystem-azure)

Laravel Azure blob storage service provider

> Only for **blob storage**!

Usage
-----

[](#usage)

- Register service provider in `config/app.php`.

```
'providers' => [
    AzureStorageServiceProvider::class,
]
```

> If you are using Laravel &gt;= 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()`.

###  Health Score

31

—

LowBetter than 68% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity20

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity60

Established project with proven stability

 Bus Factor1

Top contributor holds 54.5% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

3

Last Release

3099d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/80921344d69098e9c89b302ffc00739dd801aaaf688e46d6a430a6a7f3e8b181?d=identicon)[wbswjc](/maintainers/wbswjc)

---

Top Contributors

[![wbswjc](https://avatars.githubusercontent.com/u/7327500?v=4)](https://github.com/wbswjc "wbswjc (6 commits)")[![futureoriented](https://avatars.githubusercontent.com/u/33508030?v=4)](https://github.com/futureoriented "futureoriented (4 commits)")[![Gummibeer](https://avatars.githubusercontent.com/u/6187884?v=4)](https://github.com/Gummibeer "Gummibeer (1 commits)")

---

Tags

Flysystemlaravelazure

### Embed Badge

![Health badge](/badges/futureoriented-laravel-flysystem-azure/health.svg)

```
[![Health](https://phpackages.com/badges/futureoriented-laravel-flysystem-azure/health.svg)](https://phpackages.com/packages/futureoriented-laravel-flysystem-azure)
```

###  Alternatives

[websight/l5-google-cloud-storage

Laravel 5 Flysystem Google Cloud Storage Service Provider

3662.2k](/packages/websight-l5-google-cloud-storage)[danhunsaker/laravel-flysystem-others

Automatically registers every third-party Flysystem adapter it recognizes as a Laravel Filesystem Driver.

2332.5k](/packages/danhunsaker-laravel-flysystem-others)[zing/laravel-flysystem-obs

Flysystem Adapter for OBS

1211.2k](/packages/zing-laravel-flysystem-obs)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
