-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
108 lines (108 loc) · 3.31 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
{
"name": "reactive-apps/skeleton",
"description": "Reactive Apps Skeleton",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.3",
"brunty/cigar": "^1.11",
"php-di-definitions/react-event-loop-inspected": "dev-master",
"php-di-definitions/twig": "dev-master",
"reactive-apps/app": "dev-master",
"reactive-apps/command-bunny-consumer": "dev-master",
"reactive-apps/command-http-server": "dev-master",
"reactive-apps/command-metrics": "dev-master",
"reactive-apps/command-supervisor": "dev-master",
"roave/security-advisories": "dev-master",
"vlucas/phpdotenv": "^4.0",
"wyrihaximus/react-http-middleware-measure": "dev-master",
"wyrihaximus/react-http-middleware-with-headers": "^1.0",
"wyrihaximus/react-inspector-child-process-pools": "dev-master",
"wyrihaximus/react-inspector-cpu-usage": "dev-master",
"wyrihaximus/react-inspector-http-middleware-measure": "dev-master",
"wyrihaximus/react-inspector-memory-usage": "dev-master"
},
"require-dev": {
"api-clients/test-utilities": "^5.0",
"seregazhuk/php-watcher": "^0.5.2"
},
"config": {
"sort-packages": true,
"platform": {
"php": "7.3"
}
},
"extra": {
"php-di-definitions": {
"di": [
"etc/di/*.php"
]
},
"reactive-apps": {
"config": [
"etc/config/*.php"
],
"http-controller": [
"src/Controller/*.php"
]
}
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"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"
],
"infection": [
"@ensure-installed",
"infection --ansi"
],
"unit": [
"@ensure-installed",
"phpunit --colors=always"
],
"unit-coverage": [
"@ensure-installed",
"phpunit --colors=always --coverage-text --coverage-html covHtml --coverage-clover ./build/logs/clover.xml"
],
"lint-php": [
"@ensure-installed",
"parallel-lint --exclude vendor ."
],
"smoke": [
"@ensure-installed",
"./cigar.ash"
],
"qa": [
"@lint-php",
"@cs",
"@unit",
"@smoke"
],
"extended": [
"@lint-php",
"@cs",
"@unit-coverage",
"@infection",
"@smoke"
],
"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"
]
}
}