heedworks / laravel-azure-blob-storage
Laravel wrapper for Azure Blob Storage. Uses Azure library from https://github.com/beberlei
Installs: 18 272
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- php: >=5.3.0
- beberlei/azure-blob-storage: *
Requires (Dev)
- illuminate/support: 4.1.*
This package is not auto-updated.
Last update: 2024-11-09 15:10:48 UTC
README
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.