Integrate with Azure's cloud storage services
composer require xray/azure-storage-php-sdk
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',
));
This project is licensed under the MIT License.