-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
42 lines (42 loc) · 1.04 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
{
"name": "blue32a/monolog-azure-blob",
"description": "Azure Blob Storage Handler for Monolog",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "blue32a",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2",
"monolog/monolog": ">=1.24 <=2.1",
"microsoft/azure-storage-blob": "^1.5"
},
"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\\Monolog\\Handler\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"lint": "vendor/bin/parallel-lint --no-progress --exclude vendor .",
"cs": "vendor/bin/phpcs",
"cbf": "vendor/bin/phpcbf",
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
}
}