-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
64 lines (64 loc) · 1.83 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "danskernesdigitalebibliotek/ddb-cover-service-upload-php-client",
"version": "1.0.0",
"description": "",
"keywords": [
"swagger",
"php",
"sdk",
"api"
],
"homepage": "http://swagger.io",
"license": "AGPL-3.0-only",
"authors": [
{
"name": "Swagger and contributors",
"homepage": "https://github.com/swagger-api/swagger-codegen"
}
],
"require": {
"php": ">=7",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "^6.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": { "CoverServiceUpload\\" : "lib/" }
},
"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"
]
}
}