Skip to content

Commit 479da70

Browse files
author
brecht.vermeersch
committed
register service provider
1 parent 03e69de commit 479da70

File tree

2 files changed

+31
-24
lines changed

2 files changed

+31
-24
lines changed

composer.json

Lines changed: 30 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,33 @@
11
{
2-
"name": "azure-oss/storage-blob-laravel",
3-
"description": "Azure Storage Blob filesystem driver for Laravel",
4-
"type": "library",
5-
"license": "MIT",
6-
"autoload": {
7-
"psr-4": {
8-
"AzureOss\\LaravelAzureStorageBlob\\": "src/"
9-
}
10-
},
11-
"authors": [
12-
{
13-
"name": "Brecht Vermeersch",
14-
"email": "[email protected]"
15-
}
16-
],
17-
"require": {
18-
"php": "^8.1",
19-
"illuminate/filesystem": "^10|^11",
20-
"illuminate/support": "^10|^11",
21-
"azure-oss/storage-blob-flysystem": "^1.0"
22-
},
23-
"require-dev": {
24-
"laravel/pint": "^1.17"
2+
"name": "azure-oss/storage-blob-laravel",
3+
"description": "Azure Storage Blob filesystem driver for Laravel",
4+
"type": "library",
5+
"license": "MIT",
6+
"autoload": {
7+
"psr-4": {
8+
"AzureOss\\LaravelAzureStorageBlob\\": "src/"
259
}
10+
},
11+
"authors": [
12+
{
13+
"name": "Brecht Vermeersch",
14+
"email": "[email protected]"
15+
}
16+
],
17+
"require": {
18+
"php": "^8.1",
19+
"illuminate/filesystem": "^10|^11",
20+
"illuminate/support": "^10|^11",
21+
"azure-oss/storage-blob-flysystem": "^1.0"
22+
},
23+
"require-dev": {
24+
"laravel/pint": "^1.17"
25+
},
26+
"extra": {
27+
"laravel": {
28+
"providers": [
29+
"AzureOss\\LaravelAzureStorageBlob\\AzureStorageBlobServiceProvider"
30+
]
31+
}
32+
}
2633
}

src/AzureBlobStorageServiceProvider.php renamed to src/AzureStorageBlobServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
/**
1414
* @internal
1515
*/
16-
final class AzureBlobStorageServiceProvider extends ServiceProvider
16+
final class AzureStorageBlobServiceProvider extends ServiceProvider
1717
{
1818
public function boot(): void
1919
{

0 commit comments

Comments
 (0)