-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.62 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
{
"name": "phase2/composer-analytics",
"description": "Parses composer files and gathers analytics such as patch use.",
"license": "GPL-2.0+",
"authors": [
{
"name": "Jonathan Hedstrom",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.3",
"ext-json": "*",
"symfony/console": "^5.1",
"symfony/finder": "^5.1",
"league/csv": "^9.6",
"symfony/yaml": "^5.1"
},
"require-dev": {
"phpunit/phpunit": "^9.3",
"squizlabs/php_codesniffer": "^3.5",
"mikey179/vfsstream": "^1.6",
"jakub-onderka/php-parallel-lint": "^1.0",
"phpspec/phpspec": "^6.2",
"phpspec/prophecy-phpunit": "^2.0"
},
"autoload": {
"psr-4": {"Phase2\\ComposerAnalytics\\": "src"}
},
"autoload-dev": {
"psr-4": {"Phase2\\ComposerAnalytics\\Tests\\": "tests"}
},
"scripts": {
"lint": "parallel-lint src tests spec",
"spec": "phpspec run",
"phpunit":"phpunit --log-junit=reports/unitreport.xml --coverage-text --coverage-html=reports/coverage --coverage-clover=reports/coverage.xml",
"phpcs": "phpcs --encoding=utf-8 --standard=./phpcs-ruleset.xml --report-checkstyle=reports/checkstyle-phpcs.xml --report-full --extensions=php src/* tests/*",
"test": [
"composer validate --no-interaction",
"@lint",
"@spec",
"@phpunit",
"@phpcs"
]
},
"bin": ["bin/composer-analyze"],
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}