-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.29 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "blue32a/laravel-azure-blob-storage",
"description": "Laravel Filesystem using Azure Blob Storage.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "blue32a",
"email": "blue32a.jp@gmail.com"
}
],
"require": {
"php": "^7.2",
"blue32a/flysystem-azure-blob-storage": "^1.0",
"illuminate/support": "^6.0|^7.0"
},
"require-dev": {
"blue32a/php-coding-standard": "^1.0",
"mockery/mockery": "^1.3",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpunit/phpunit": "^8.5"
},
"extra": {
"laravel": {
"providers": [
"Blue32a\\Laravel\\Filesystem\\AzureBlobStorage\\ServiceProvider"
]
}
},
"autoload": {
"psr-4": {
"Blue32a\\Laravel\\Filesystem\\AzureBlobStorage\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"lint": "vendor/bin/parallel-lint --no-progress --exclude vendor .",
"cs": "vendor/bin/phpcs --standard=phpcs.xml",
"cbf": "vendor/bin/phpcbf --standard=phpcs.xml",
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
}
}