PHPackages                             rohitrajv5/pimcore-bundle-azure-blob-sync - 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. rohitrajv5/pimcore-bundle-azure-blob-sync

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

rohitrajv5/pimcore-bundle-azure-blob-sync
=========================================

This bundle use to sync all records Assets from Pimcore to Azure Blob Storage

v1.3(5y ago)32.9k↓50%4[4 issues](https://github.com/rohitrajv5/pimcore-bundle-azure-blob-sync/issues)GPL-3.0+PHPPHP &gt;=5.3.0

Since Jul 28Pushed 4y ago1 watchersCompare

[ Source](https://github.com/rohitrajv5/pimcore-bundle-azure-blob-sync)[ Packagist](https://packagist.org/packages/rohitrajv5/pimcore-bundle-azure-blob-sync)[ RSS](/packages/rohitrajv5-pimcore-bundle-azure-blob-sync/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (1)Versions (5)Used By (0)

Pimcore Azure Bundle
====================

[](#pimcore-azure-bundle)

Pimcore Azure Bundle is use to push Pimcore Assets on Microsoft Azure Blob Storage

Compatible with Pimcore &gt; v5.6. Tested on Pimcore 6
------------------------------------------------------

[](#compatible-with-pimcore--v56-tested-on-pimcore-6)

### Installation

[](#installation)

Install with Composer

```
composer require rohitrajv5/pimcore-bundle-azure-blob-sync
```

#### Execute following commands

[](#execute-following-commands)

```
bin/console pimcore:bundle:enable AzurePimcoreBundle
bin/console assets:install web
```

Plugin will look like this

[![alt text](https://camo.githubusercontent.com/75a7e05c0394361a31e7b25e68316570355c7b80be83b875f098443842459e9b/68747470733a2f2f692e706f7374696d672e63632f47747036544a6b6e2f53637265656e73686f742d66726f6d2d323032302d30372d30372d31332d34372d34312e706e67)](https://camo.githubusercontent.com/75a7e05c0394361a31e7b25e68316570355c7b80be83b875f098443842459e9b/68747470733a2f2f692e706f7374696d672e63632f47747036544a6b6e2f53637265656e73686f742d66726f6d2d323032302d30372d30372d31332d34372d34312e706e67)

##### Changes in Pimcore Admin

[](#changes-in-pimcore-admin)

1. Goto Pimcore Admin -&gt; Settings -&gt; Azure Blog Container Settings
2. Enter your credentials and save.

Configurations &amp; Settings
-----------------------------

[](#configurations--settings)

#### Add following code in "app/constant.php"

[](#add-following-code-in-appconstantphp)

```
try {
    $file = __DIR__ . '/../var/config/azure.php';
    if (file_exists($file)) {
        $azureConfig = include($file);
    }
} catch (\Exception $e) {
    $azureConfig = [];
}
$azureEnabled = FALSE;
if (isset($azureConfig['enableAzure']) && $azureConfig['enableAzure']) {
    $azureEnabled = TRUE;
    define("AZURE_ACCOUNT_URL", $azureConfig['accountUrl']);
    define("AZURE_ACCOUNT_NAME", $azureConfig['accountName']);
    define("AZURE_ACCOUNT_KEY", $azureConfig['accountKey']);
    define("AZURE_CONTAINER", $azureConfig['container']);
    $azureFileWrapperPrefix = "blob://" . AZURE_CONTAINER; // do NOT change
    define("PIMCORE_ASSET_DIRECTORY", $azureFileWrapperPrefix . "/assets");
    //define("PIMCORE_TEMPORARY_DIRECTORY", $azureFileWrapperPrefix . "/tmp");
    //constants for reference in the views
    //define("PIMCORE_TRANSFORMED_ASSET_URL", AZURE_ACCOUNT_URL . "/" . AZURE_CONTAINER . "/assets");
    // the following paths should be private!
    define("PIMCORE_VERSION_DIRECTORY", $azureFileWrapperPrefix . "/versions");
    //define("PIMCORE_RECYCLEBIN_DIRECTORY", $azureFileWrapperPrefix . "/recyclebin");
    //define("PIMCORE_LOG_MAIL_PERMANENT", $azureFileWrapperPrefix . "/email");
    //define("PIMCORE_LOG_FILEOBJECT_DIRECTORY", $azureFileWrapperPrefix . "/fileobjects");
}
define("ENABLE_AZURE",$azureEnabled);
```

Uncomment option, Which you want to sync on Azure Blob Storage.

#### Add following code constant in "app/startup.php"

[](#add-following-code-constant-in-appstartupphp)

```
use AzurePimcoreBundle\AzureBlobStorage\StreamWrapper;
if (ENABLE_AZURE) {
    $accountUrl = AZURE_ACCOUNT_URL;
    $accountName = AZURE_ACCOUNT_NAME;
    $accountKey = AZURE_ACCOUNT_KEY;
    $connectionString = "DefaultEndpointsProtocol=https;AccountName=" . $accountName . ";AccountKey=" . $accountKey;

    $container = AZURE_CONTAINER;

    $blobClient = \MicrosoftAzure\Storage\Blob\BlobRestProxy::createBlobService($connectionString);

    StreamWrapper::register($blobClient, 'blob');

    \Pimcore\File::setContext(stream_context_create([
        'blob' => ['seekable' => true]
    ]));
}
```

License
-------

[](#license)

---

GPL-3.0+

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance0

Infrequent updates — may be unmaintained

Popularity25

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity53

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 91.7% 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

4

Last Release

2114d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/14f0454e0b58557e15cd349a425aad845269014257efa282f693757235004819?d=identicon)[rohitrajv5](/maintainers/rohitrajv5)

---

Top Contributors

[![rohit-raj-verma](https://avatars.githubusercontent.com/u/261393979?v=4)](https://github.com/rohit-raj-verma "rohit-raj-verma (22 commits)")[![emimontesdeoca](https://avatars.githubusercontent.com/u/13499480?v=4)](https://github.com/emimontesdeoca "emimontesdeoca (2 commits)")

---

Tags

facebookgooglefeedpimcorecatalogue

### Embed Badge

![Health badge](/badges/rohitrajv5-pimcore-bundle-azure-blob-sync/health.svg)

```
[![Health](https://phpackages.com/badges/rohitrajv5-pimcore-bundle-azure-blob-sync/health.svg)](https://phpackages.com/packages/rohitrajv5-pimcore-bundle-azure-blob-sync)
```

###  Alternatives

[google/cloud

Google Cloud Client Library

1.2k16.2M53](/packages/google-cloud)[craftcms/google-cloud

Google Cloud Storage integration for Craft CMS

11100.7k1](/packages/craftcms-google-cloud)

PHPackages © 2026

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