This repository has been archived by the owner on Sep 12, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
116 lines (116 loc) · 3.44 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
{
"name": "wyrihaximus/react-parallel",
"description": "Bridging ext-parallel and ReactPHP",
"license": "MIT",
"authors": [
{
"name": "Cees-Jan Kiewiet",
"email": "[email protected]",
"homepage": "http://wyrihaximus.net/"
}
],
"require": {
"php": "^7.3",
"ext-parallel": "*",
"react/event-loop": "^1.1",
"react/promise": "^2.7",
"reactivex/rxphp": "^2.0",
"wyrihaximus/pool-info": "^1.0",
"wyrihaximus/react-parallel-contracts": "^1.0",
"wyrihaximus/react-parallel-future-to-promise-converter": "^1.1 || ^1.0.1",
"wyrihaximus/react-parallel-infinite-pool": "^1.0",
"wyrihaximus/react-parallel-runtime": "^1.0",
"wyrihaximus/ticking-promise": "^1.6"
},
"require-dev": {
"moneyphp/money": "^3.2 || ^3.2.1",
"ocramius/package-versions": "^1.4",
"wyrihaximus/async-test-utilities": "^1.1",
"wyrihaximus/iterator-or-array-to-array": "^1.1",
"wyrihaximus/react-parallel-pool-tests": "^1.0"
},
"config": {
"platform": {
"php": "7.3"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"WyriHaximus\\React\\Parallel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WyriHaximus\\React\\Tests\\Parallel\\": "tests/"
}
},
"scripts": {
"post-install-cmd": [
"composer normalize"
],
"post-update-cmd": [
"composer normalize"
],
"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"
],
"cs": [
"php-cs-fixer fix --config=.php_cs --ansi --dry-run --diff --verbose --allow-risky=yes --show-progress=estimating"
],
"cs-fix": [
"php-cs-fixer fix --config=.php_cs --ansi --verbose --allow-risky=yes --show-progress=estimating"
],
"infection": [
"infection --ansi --min-msi=100 --min-covered-msi=100 --threads=$(nproc)"
],
"lint-php": [
"parallel-lint --exclude vendor ."
],
"qa-all": [
"composer validate --ansi",
"composer normalize --ansi",
"@lint-php",
"@cs",
"@stan",
"@unit",
"@infection"
],
"qa-all-extended": [
"composer validate --ansi",
"composer normalize --ansi",
"@lint-php",
"@cs",
"@stan",
"@unit-coverage",
"@infection"
],
"qa-ci": [
"@unit"
],
"qa-ci-extended": [
"@qa-all-extended"
],
"qa-ci-windows": [
"@qa-windows"
],
"qa-contrib": [
"@qa-all"
],
"qa-windows": [
"@lint-php",
"@cs",
"@stan",
"@unit"
],
"stan": [
"phpstan analyse src tests --level max --ansi -c phpstan.neon"
],
"unit": [
"phpunit --colors=always -c phpunit.xml.dist"
],
"unit-coverage": [
"phpunit --colors=always -c phpunit.xml.dist --coverage-text --coverage-html covHtml --coverage-clover ./build/logs/clover.xml"
]
}
}