-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 1.07 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
{
"name": "blue32a/flysystem-azure-blob-storage",
"description": "Extend league/flysystem-azure-blob-storage.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "blue32a",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2",
"league/flysystem-azure-blob-storage": "^1.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"
},
"autoload": {
"psr-4": {
"Blue32a\\Flysystem\\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
}
}