LaravelPackages.net
Acme Inc.
Toggle sidebar
heedworks/laravel-azure-blob-storage

Laravel wrapper for Azure Blob Storage. Uses Azure library from https://github.com/beberlei

20.425
1
About heedworks/laravel-azure-blob-storage

heedworks/laravel-azure-blob-storage is a Laravel package for laravel wrapper for azure blob storage. uses azure library from https://github.com/beberlei. It currently has 1 GitHub stars and 20.425 downloads on Packagist. Install it with composer require heedworks/laravel-azure-blob-storage. Discover more Laravel packages by heedworks or browse all Laravel packages to compare alternatives.

Last updated

Installation

Update your composer.json file to include this package as a dependency

"heedworks/laravel-azure-blob-storage": "dev-master"

Register the Loggr service provider by adding it to the providers array in the app/config/app.php file.

Heedworks\LaravelAzureBlobStorage\LaravelAzureBlobStorageServiceProvider

Alias the Azure Blob Storage facade by adding it to the aliases array in the app/config/app.php file.

'aliases' => array(
	'BlobStorage' => 'Heedworks\LaravelAzureBlobStorage\Facades\BlobStorage'
)

Configuration

Copy the config file into your project by running

php artisan config:publish heedworks/laravel-azure-blob-storage

Edit the config file to include your Azure Blob Storage credentials.

Usage

This package leverages the Azure Blob Storage library from beberlei. Please see http://github.com/beberlei/azure-blob-storage for details.

Star History Chart