Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/azure-oss/azure-storage-php-adapter-laravel
Azure Storage Blob filesystem driver for Laravel
https://github.com/azure-oss/azure-storage-php-adapter-laravel
azure blob flysystem laravel storage
Last synced: 3 days ago
JSON representation
Azure Storage Blob filesystem driver for Laravel
- Host: GitHub
- URL: https://github.com/azure-oss/azure-storage-php-adapter-laravel
- Owner: Azure-OSS
- License: mit
- Created: 2024-07-29T19:11:05.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-08-07T20:13:47.000Z (6 months ago)
- Last Synced: 2024-11-05T09:08:07.104Z (3 months ago)
- Topics: azure, blob, flysystem, laravel, storage
- Language: PHP
- Homepage:
- Size: 8.79 KB
- Stars: 14
- Watchers: 2
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Azure Storage Blob filesystem driver for Laravel
[![Latest Version on Packagist](https://img.shields.io/packagist/v/azure-oss/storage-blob-laravel.svg)](https://packagist.org/packages/azure-oss/storage-blob-laravel)
[![Packagist Downloads](https://img.shields.io/packagist/dm/azure-oss/storage-blob-laravel)](https://packagist.org/packages/azure-oss/storage-blob-laravel)## Minimum Requirements
* PHP 8.1 or above
## Install
Install the package using composer:
```shell
composer require azure-oss/storage-blob-laravel
```Then add this to the disks section of config/filesystems.php:
```php
'azure' => [
'driver' => 'azure-storage-blob',
'connection_string' => env('AZURE_STORAGE_CONNECTION_STRING'),
'container' => env('AZURE_STORAGE_CONTAINER'),
],
```## Support
Do you need help, do you want to talk to us, or is there anything else?
Join us at:
* [Github Discussions](https://github.com/Azure-OSS/azure-storage-php/discussions)
* [Slack](https://join.slack.com/t/azure-oss/shared_invite/zt-2lw5knpon-mqPM_LIuRZUoH02AY8uiYw)## License
Azure-Storage-PHP-Adapter-Flysystem is released under the MIT License. See [LICENSE](./LICENSE) for details.
## PHP Version Support Policy
The maintainers of this package add support for a PHP version following its initial release and drop support for a PHP version once it has reached its end of security support.