Skip to content

Commit e096186

Browse files
mmachatschekbrendt
andauthored
refactor(filesystem): switch to the recommended azure blog storage lib (#1363)
Co-authored-by: Brent Roose <[email protected]>
1 parent c3c8d03 commit e096186

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,17 +41,18 @@
4141
"voku/portable-ascii": "^2.0.3"
4242
},
4343
"require-dev": {
44+
"azure-oss/storage-blob-flysystem": "^1.2",
4445
"carthage-software/mago": "0.26.1",
4546
"guzzlehttp/psr7": "^2.6.1",
4647
"league/flysystem-aws-s3-v3": "^3.0",
47-
"league/flysystem-azure-blob-storage": "^3.0",
4848
"league/flysystem-ftp": "^3.0",
4949
"league/flysystem-google-cloud-storage": "^3.0",
5050
"league/flysystem-memory": "^3.0",
5151
"league/flysystem-read-only": "^3.0",
5252
"league/flysystem-sftp-v3": "^3.0",
5353
"league/flysystem-ziparchive": "^3.0",
5454
"masterminds/html5": "^2.9",
55+
"microsoft/azure-storage-blob": "^1.5",
5556
"mikey179/vfsstream": "^2.0@dev",
5657
"nesbot/carbon": "^3.8",
5758
"nyholm/psr7": "^1.8",

packages/storage/src/AdapterWasMissing.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
namespace Tempest\Storage;
44

5+
use AzureOss\FlysystemAzureBlobStorage\AzureBlobStorageAdapter;
56
use Exception;
67
use League\Flysystem\AwsS3V3\AwsS3V3Adapter;
7-
use League\Flysystem\AzureBlobStorage\AzureBlobStorageAdapter;
88
use League\Flysystem\Ftp\FtpAdapter;
99
use League\Flysystem\GoogleCloudStorage\GoogleCloudStorageAdapter;
1010
use League\Flysystem\InMemory\InMemoryFilesystemAdapter;

packages/storage/src/Config/AzureStorageConfig.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace Tempest\Storage\Config;
44

5-
use League\Flysystem\AzureBlobStorage\AzureBlobStorageAdapter;
5+
use AzureOss\FlysystemAzureBlobStorage\AzureBlobStorageAdapter;
66
use League\Flysystem\FilesystemAdapter;
77
use MicrosoftAzure\Storage\Blob\BlobRestProxy;
88
use UnitEnum;

0 commit comments

Comments
 (0)