-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
75 lines (75 loc) · 1.9 KB
/
Copy pathcomposer.json
File metadata and controls
75 lines (75 loc) · 1.9 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "librecode/release-tool",
"description": "Production-grade PHP CLI and PHAR for reproducible release automation.",
"type": "project",
"license": "AGPL-3.0-or-later",
"require": {
"php": "^8.3",
"symfony/console": "^7.4",
"symfony/yaml": "^7.4",
"symfony/http-client": "^7.4",
"symfony/process": "^7.4",
"ext-simplexml": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.70",
"humbug/box": "^4.6",
"infection/infection": "^0.35",
"phpmd/phpmd": "^2.15",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^11.5",
"rector/rector": "^2.0",
"squizlabs/php_codesniffer": "^4.0",
"vimeo/psalm": "^6.0",
"deptrac/deptrac": "^4.7"
},
"autoload": {
"psr-4": {
"LibreCode\\ReleaseTool\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LibreCode\\ReleaseTool\\Tests\\": "tests/"
}
},
"bin": [
"bin/release-tool"
],
"scripts": {
"test": "phpunit",
"test:coverage": "XDEBUG_MODE=coverage phpunit --coverage-clover build/coverage.xml",
"infection": "infection --threads=max --min-msi=75 --min-covered-msi=75",
"phpstan": "phpstan analyse --no-progress",
"psalm": "psalm --no-cache",
"phpmd": "phpmd src text phpmd.xml",
"phpcs": "phpcs",
"cs:check": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix",
"rector:check": "rector process --dry-run",
"deptrac": "deptrac analyse --no-progress",
"qa": [
"@test",
"@phpstan",
"@psalm",
"@phpmd",
"@phpcs",
"@cs:check",
"@rector:check",
"@deptrac"
],
"build:phar": "box compile",
"test:phar": [
"php tools/test-phar.php",
"php tools/test-publication-phar.php"
]
},
"config": {
"allow-plugins": {
"infection/extension-installer": true
},
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}