forked from karriereat/php-code-quality
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 2.04 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 2.04 KB
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": "aretche/php-code-quality",
"description": "Code Quality scripts that can be run via Composer in Symfony projects. (forked from karriere/code-quality)",
"keywords": ["symfony", "code quality", "scripts"],
"license": "Apache-2.0",
"authors": [
{
"name": "Gabriel Arellano",
"email": "gabrielarellano@gmail.com",
"role": "Developer (current fork)"
},
{
"name": "Jakob Linskeseder",
"email": "jakob.linskeseder@karriere.at",
"role": "Maintainer (original project)"
}
],
"autoload": {
"psr-4": {
"Karriere\\CodeQuality\\": "src"
}
},
"require": {
"php": ">=7.1",
"squizlabs/php_codesniffer": "^3.5",
"friendsofphp/php-cs-fixer": "^2.16",
"phpmd/phpmd": "^2.7",
"phpstan/phpstan": "^0.11.19",
"phpstan/phpstan-doctrine": "^0.11.6",
"phpstan/phpstan-symfony": "^0.11.6",
"karriere/phpspec-matchers": "^3.0",
"friends-of-phpspec/phpspec-code-coverage": "^4.3",
"phpspec/phpspec": "^5.0",
"phpunit/phpunit": "^6.0|^7.0",
"lchrusciel/api-test-case": "^3.1",
"symfony/console": "^3.2 || ^4.0",
"symfony/process": "^3.2 || ^4.0"
},
"require-dev": {
"composer/composer": "^1.6"
},
"bin": ["scripts/coverage-checker"],
"scripts": {
"lint": "Karriere\\CodeQuality\\CodeStyleChecker::run",
"fix": "Karriere\\CodeQuality\\CodeStyleFixer::run",
"md": "Karriere\\CodeQuality\\MessDetector::run",
"static": "Karriere\\CodeQuality\\StaticAnalyzer::run",
"unit-test": "Karriere\\CodeQuality\\UnitTest::run",
"unit-coverage": "Karriere\\CodeQuality\\UnitCoverage::run",
"check-coverage": "Karriere\\CodeQuality\\CloverCoverageCheck::run",
"spec-test": "Karriere\\CodeQuality\\SpecificationTest::run",
"spec-coverage": "Karriere\\CodeQuality\\CodeCoverage::run"
},
"config": {
"sort-packages": true
}
}