-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
57 lines (57 loc) · 1.6 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
{
"name": "wyrihaximus/github-action-wait-for-status",
"description": "GitHub Action that waits for successful commit statuses and checks.",
"require": {
"php": "^7.4",
"api-clients/github": "dev-main",
"api-clients/psr7-http-status-exceptions": "^1.0",
"api-clients/rx": "^2.2.1",
"bramus/monolog-colored-line-formatter": "^3.0",
"clue/buzz-react": "^2.7",
"monolog/monolog": "^2.0",
"psr/log": "^1.1",
"react/event-loop": "^1.2",
"react/promise": "^2.7",
"react/promise-stream": "^1.2",
"react/stream": "^1.1",
"reactivex/rxphp": "^2.0",
"thecodingmachine/safe": "^1.1",
"wyrihaximus/constants": "^1.5",
"wyrihaximus/monolog-formatted-psr-handler": "^1.2",
"wyrihaximus/psr-3-callable-throwable-logger": "^2.0",
"wyrihaximus/react-psr-3-stdio": "^2.1",
"wyrihaximus/ticking-promise": "^1.6"
},
"require-dev": {
"wyrihaximus/async-test-utilities": "^4"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"WyriHaximus\\GithubAction\\WaitForStatus\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"WyriHaximus\\Tests\\GithubAction\\WaitForStatus\\": "tests"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"icanhazstring/composer-unused": true,
"infection/extension-installer": true
},
"platform": {
"php": "7.4.7"
}
},
"scripts": {
"post-update-cmd": [
"composer normalize"
]
}
}