Download the PHP package butterfly-team/azure-blob-storage without Composer
On this page you can find all versions of the php package butterfly-team/azure-blob-storage. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download butterfly-team/azure-blob-storage
More information about butterfly-team/azure-blob-storage
Files in butterfly-team/azure-blob-storage
Download butterfly-team/azure-blob-storage
More information about butterfly-team/azure-blob-storage
Files in butterfly-team/azure-blob-storage
Vendor butterfly-team
Package azure-blob-storage
Short Description Small library to access Microsoft Windows Azure Blob Storage with a Service or a StreamWrapper.
License New BSD
Package azure-blob-storage
Short Description Small library to access Microsoft Windows Azure Blob Storage with a Service or a StreamWrapper.
License New BSD
Please rate this library. Is it a good library?
Informations about the package azure-blob-storage
Azure Blob Storage
Small library that allows you to work with Windows Azure Blob Storage from PHP.
The code is forked and adapted from the PHP Azure SDK. It was cleaned up slightly and removed all its dependencies to be very leightweight.
You can work with Windows Azure Blob from any platform (Windows or Linux) and only need an Azure storage account to get started.
Features:
- Programmatic API to work with blobs
- Containers Management (Private or Public)
- Streamwrapper
- ACLs
Installation
Suggested via composer:
{
"require": {
"beberlei/azure-blob-storage": "*"
}
}
Then using the composer binary:
prompt> php composer.phar install
Configuration
<?php
use Beberlei\AzureBlobStorage\BlobClient;
$accountUrl = "http://myaccount.blob.storage.windows.net";
$accountName = "myaccount";
$accountKey = "abcdefg";
$client = new BlobClient($accountUrl, $accountName, $accountKey);
All versions of azure-blob-storage with dependencies
PHP Build Version
Package Version
No informations.
The package butterfly-team/azure-blob-storage contains the following files
Loading the files please wait ....