xray/azure-storage-php-sdk

v1.1.2 2024-09-28 15:42 UTC

This package is auto-updated.

Last update: 2025-03-06 17:08:03 UTC


README

License

PHP CI

Description

Integrate with Azure's cloud storage services

Installation

composer require xray/azure-storage-php-sdk

Usage

Setup Blob Storage

use Xray\AzureStoragePhpSdk\BlobStorage\BlobStorageClient;
use Xray\AzureStoragePhpSdk\Authentication\MicrosoftEntraId;

$client = BlobStorageClient::create(new MicrosoftEntraId(
    account: 'my_account',
    directoryId: 'directory_id',
    applicationId: 'application_id',
    applicationSecret: 'application_secret',
));

Storage Account

License

This project is licensed under the MIT License.

Contacts