-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.52 KB
/
composer.json
File metadata and controls
60 lines (60 loc) · 1.52 KB
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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "itk-dev/azure-key-vault-php",
"description": "Azure key vault php library",
"license": "MIT",
"keywords": ["azure", "key vault"],
"type": "library",
"authors": [
{
"name": "Jesper Kristensen",
"email": "itkdev@mkb.aarhus.dk"
}
],
"require": {
"php": ">=7.2",
"ext-json": "*",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0"
},
"require-dev": {
"escapestudios/symfony2-coding-standard": "^3.11",
"friendsofphp/php-cs-fixer": "^2.16"
},
"autoload": {
"psr-4": {
"ItkDev\\AzureKeyVault\\": "src/"
}
},
"scripts": {
"check": [
"@check-coding-standards"
],
"check-coding-standards/php-cs-fixer": [
"php-cs-fixer --config=.php_cs.dist fix --dry-run --format=checkstyle"
],
"check-coding-standards/phpcs": [
"phpcs --standard=phpcs.xml.dist"
],
"check-coding-standards": [
"@check-coding-standards/php-cs-fixer",
"@check-coding-standards/phpcs"
],
"apply-coding-standards/php-cs-fixer": [
"php-cs-fixer --config=.php_cs.dist fix"
],
"apply-coding-standards/phpcs": [
"phpcbf --standard=phpcs.xml.dist"
],
"apply-coding-standards": [
"@apply-coding-standards/php-cs-fixer",
"@apply-coding-standards/phpcs"
],
"actions/phpcs": [
"phpcs --standard=phpcs.xml.dist --report=checkstyle"
],
"actions/phpcsfixer": [
"php-cs-fixer --config=.php_cs.dist fix --dry-run --diff --diff-format=udiff"
]
}
}