forked from php-api-clients/resource-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
93 lines (93 loc) · 2.15 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "api-clients/resource-generator",
"description": "Resource from YAML generation tool",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Cees-Jan Kiewiet",
"email": "[email protected]"
}
],
"require": {
"php": "^7.0",
"nikic/php-parser": "^2.1",
"symfony/yaml": "^2.8||^3.0",
"doctrine/inflector": "^1.1",
"api-clients/foundation": "dev-master",
"api-clients/hydrator": "dev-master",
"api-clients/resource": "^3.0",
"api-clients/resource-test-utilities": "dev-master",
"friendsofphp/php-cs-fixer": "1.11.8"
},
"require-dev": {
"api-clients/test-utilities": "^2.0"
},
"autoload": {
"psr-4": {
"ApiClients\\Tools\\ResourceGenerator\\": "src/"
},
"files": ["src/functions_include.php"]
},
"autoload-dev": {
"psr-4": {
"ApiClients\\Tests\\Tools\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"bin": [
"api-client-resource-generator"
],
"scripts": {
"ensure-installed": "composer install --ansi -n -q",
"cs": [
"@ensure-installed",
"phpcs --standard=PSR2 src/"
],
"unit": [
"@ensure-installed",
"phpunit --colors=always -c phpunit.xml.dist"
],
"unit-coverage": [
"@ensure-installed",
"phpunit --colors=always -c phpunit.xml.dist --coverage-text --coverage-html covHtml --coverage-clover ./build/logs/clover.xml"
],
"lint-php": [
"@ensure-installed",
"parallel-lint --exclude vendor ."
],
"qa-all": [
"@lint-php",
"@cs",
"@unit"
],
"qa-all-coverage": [
"@lint-php",
"@cs",
"@unit-coverage"
],
"qa-windows": [
"@lint-php",
"@cs",
"@unit"
],
"qa-ci": [
"@qa-all"
],
"qa-ci-coverage": [
"@qa-all-coverage"
],
"qa-ci-windows": [
"@qa-windows"
],
"qa-contrib": [
"@qa-all"
],
"ci-coverage": [
"if [ -f ./build/logs/clover.xml ]; then wget https://scrutinizer-ci.com/ocular.phar && php ocular.phar code-coverage:upload --format=php-clover ./build/logs/clover.xml; fi"
]
}
}