-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.45 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
{
"name": "yaroslavche/enigma",
"description": "Enigma",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "yaroslavche",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2"
},
"require-dev": {
"phpunit/phpunit": "*",
"infection/infection": "*",
"phpmd/phpmd": "*",
"phpstan/phpstan": "*",
"phpstan/phpstan-strict-rules": "*",
"squizlabs/php_codesniffer": "*",
"phpcompatibility/php-compatibility": "*",
"roave/backward-compatibility-check": "*",
"roave/security-advisories": "*"
},
"autoload": {
"psr-4": {
"Yaroslavche\\Enigma\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Yaroslavche\\Enigma\\Tests\\": "tests/"
}
},
"scripts": {
"phpcs": "phpcs",
"phpcbf": "phpcbf",
"phpmd": "phpmd src ansi cleancode,codesize,controversial,design,naming,unusedcode",
"phpstan": "phpstan analyse src/ -c phpstan.neon --level=7 --no-progress -vv --memory-limit=-1",
"phpunit": "phpunit",
"infection": "infection --min-msi=50 --min-covered-msi=70 --log-verbosity=all",
"coverage": "phpunit --coverage-text --coverage-html ./build/coverage/html --coverage-clover ./build/coverage/clover.xml",
"bccheck": "roave-backward-compatibility-check"
},
"minimum-stability": "dev"
}