Skip to content

Commit 88bd139

Browse files
author
brecht.vermeersch
committed
update readme
1 parent f6a0cbf commit 88bd139

File tree

3 files changed

+51
-3
lines changed

3 files changed

+51
-3
lines changed

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2024 Azure OSS
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 29 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,42 @@
1-
Install the package using composer:
1+
# Azure Storage Blob filesystem driver for Laravel
2+
3+
[![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)
4+
[![Packagist Downloads](https://img.shields.io/packagist/dm/azure-oss/storage-blob-laravel)](https://packagist.org/packages/azure-oss/storage-blob-laravel)
5+
6+
## Minimum Requirements
7+
8+
* PHP 8.1 or above
29

10+
## Install
11+
12+
Install the package using composer:
313
```shell
414
composer require azure-oss/storage-blob-laravel
515
```
616

7-
Then add this to the disks section of config/filesystems.php:
817

18+
Then add this to the disks section of config/filesystems.php:
919
```php
1020
'azure' => [
1121
'driver' => 'azure-storage-blob',
1222
'connection_string' => env('AZURE_STORAGE_CONNECTION_STRING'),
1323
'container' => env('AZURE_STORAGE_CONTAINER'),
1424
],
1525
```
26+
27+
## Support
28+
29+
Do you need help, do you want to talk to us, or is there anything else?
30+
31+
Join us at:
32+
33+
* [Github Discussions](https://github.com/Azure-OSS/azure-storage-php/discussions)
34+
* [Slack](https://join.slack.com/t/azure-oss/shared_invite/zt-2lw5knpon-mqPM_LIuRZUoH02AY8uiYw)
35+
36+
## License
37+
38+
Azure-Storage-PHP-Adapter-Flysystem is released under the MIT License. See [LICENSE](./LICENSE) for details.
39+
40+
## PHP Version Support Policy
41+
42+
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.

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"php": "^8.1",
1919
"illuminate/filesystem": "^10|^11",
2020
"illuminate/support": "^10|^11",
21-
"azure-oss/storage-blob-flysystem": "^1.0"
21+
"azure-oss/storage-blob-flysystem": "^1.1"
2222
},
2323
"require-dev": {
2424
"laravel/pint": "^1.17"

0 commit comments

Comments
 (0)