nealerickson / laravel-azure-blob-storage by nealerickson

Laravel wrapper for Azure Blob Storage. Uses Azure library from https://github.com/beberlei
17,408
1
2
Package Data
Maintainer Username: nealerickson
Maintainer Contact: neal@heedworks.com (Neal Erickson)
Package Create Date: 2014-02-15
Package Last Update: 2014-02-16
Language: PHP
License: MIT
Last Refreshed: 2024-03-26 03:10:15
Package Statistics
Total Downloads: 17,408
Monthly Downloads: 111
Daily Downloads: 4
Total Stars: 1
Total Watchers: 2
Total Forks: 0
Total Open Issues: 0

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.