This repository has been archived by the owner on Sep 23, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
63 lines (63 loc) · 2.88 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
{
"name": "chubbyphp/chubbyphp-socket-server-mock",
"description": "Chubbyphp Socket Server Mock",
"keywords": ["chubbyphp", "slim", "socket", "server", "mock"],
"license": "MIT",
"authors": [
{
"name": "Dominik Zogg",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2",
"symfony/process": "^3.4.43|^4.4.11|^5.0"
},
"require-dev": {
"chubbyphp/chubbyphp-dev-helper": "dev-master",
"chubbyphp/chubbyphp-mock": "^1.4.5",
"infection/infection": "^0.15.3|^0.16.4",
"mavimo/phpstan-junit": "^0.3",
"php-coveralls/php-coveralls": "^2.2",
"php-mock/php-mock-phpunit": "^2.6",
"phploc/phploc": "^5.0|^6.0.2",
"phpstan/extension-installer": "^1.0.4",
"phpstan/phpstan": "^0.12.33",
"phpunit/phpunit": "^8.5.8|^9.2.6"
},
"autoload": {
"psr-4": { "Chubbyphp\\SocketServerMock\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Chubbyphp\\Tests\\SocketServerMock\\": "tests/" }
},
"bin": [
"bin/socketServerMock"
],
"extra": {
"branch-alias": {
"dev-master": "1.2-dev"
}
},
"scripts": {
"fix:cs": "mkdir -p build && vendor/bin/php-cs-fixer fix --cache-file=build/phpcs.cache",
"test": [
"@test:lint",
"@test:unit",
"@test:integration",
"@test:infection",
"@test:static-analysis",
"@test:loc",
"@test:cs",
"@test:insights"
],
"test:cs": "mkdir -p build && vendor/bin/php-cs-fixer fix --dry-run --stop-on-violation --cache-file=build/phpcs.cache",
"test:infection": "vendor/bin/infection --threads=$(nproc) --min-msi=85 --verbose --coverage=build/phpunit",
"test:insights": "mkdir -p build && bash -c 'vendor/bin/phpinsights analyse -v --no-interaction --min-quality=96 --disable-security-check | tee build/phpinsights.log; if [ ${PIPESTATUS[0]} -ne \"0\" ]; then exit 1; fi'",
"test:integration": "vendor/bin/phpunit --testsuite=Integration --cache-result-file=build/phpunit/result.cache",
"test:lint": "mkdir -p build && find src tests -name '*.php' -print0 | xargs -0 -n1 -P$(nproc) php -l | tee build/phplint.log",
"test:loc": "mkdir -p build && vendor/bin/phploc src --verbose | tee build/phploc.log",
"test:static-analysis": "mkdir -p build && bash -c 'vendor/bin/phpstan analyse src --no-progress --level=7 --error-format=junit | tee build/phpstan.junit.xml; if [ ${PIPESTATUS[0]} -ne \"0\" ]; then exit 1; fi'",
"test:unit": "vendor/bin/phpunit --testsuite=Unit --coverage-text --coverage-clover=build/phpunit/clover.xml --coverage-html=build/phpunit/coverage-html --coverage-xml=build/phpunit/coverage-xml --log-junit=build/phpunit/junit.xml --cache-result-file=build/phpunit/result.cache"
}
}