-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
124 lines (124 loc) · 3.27 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "api-clients/github",
"description": "Async first Github client",
"license": "MIT",
"authors": [
{
"name": "Cees-Jan Kiewiet",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3",
"api-clients/appveyor": "dev-master",
"api-clients/client-services": "^1.4",
"api-clients/foundation": "^1.0",
"api-clients/middleware": "^4.0",
"api-clients/middleware-http-exceptions": "^2.0",
"api-clients/middleware-json": "^3.0",
"api-clients/middleware-token-authorization": "^3.0",
"api-clients/middleware-user-agent": "^2.0",
"api-clients/rx": "^2.2",
"api-clients/rx-operators": "^2.0",
"api-clients/scrutinizer": "dev-master",
"api-clients/transport": "^3.1",
"api-clients/travis": "^1.0",
"kelunik/link-header-rfc5988": "^1.0",
"lcobucci/jwt": "^3.3",
"react/promise-stream": "^1.0 || ^0.1.1",
"wyrihaximus/react-stream-base64": "^1.0",
"wyrihaximus/react-stream-json": "^1.0"
},
"require-dev": {
"api-clients/cs-fixer-config": "^1.1",
"api-clients/middleware-delay": "^3.0",
"api-clients/middleware-pool": "^3.0",
"api-clients/resource-generator": "^1.0",
"api-clients/resource-test-utilities": "^1.0",
"api-clients/test-utilities": "^4.3 || ^5.0"
},
"autoload": {
"psr-4": {
"ApiClients\\Client\\Github\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ApiClients\\Tests\\Client\\Github\\": "tests/"
}
},
"config": {
"sort-packages": true,
"platform": {
"php": "7.3.3"
},
"allow-plugins": {
"ocramius/package-versions": true,
"localheinz/composer-normalize": true
}
},
"extra": {
"api-clients": {
"command-bus": {
"path": "src/CommandBus",
"namespace": "ApiClients\\Client\\Github\\CommandBus"
}
}
},
"suggest": {
"api-clients/travis": "Easy access to Travis client"
},
"scripts": {
"ensure-installed": "composer install --ansi -n -q",
"cs": [
"@ensure-installed",
"php-cs-fixer fix --config=.php_cs --ansi --dry-run --diff --verbose --allow-risky=yes --show-progress=estimating"
],
"cs-fix": [
"@ensure-installed",
"php-cs-fixer fix --config=.php_cs --ansi --verbose --allow-risky=yes --show-progress=estimating"
],
"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": [
"@unit"
],
"qa-ci-extended": [
"@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"
]
}
}