-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
63 lines (63 loc) · 1.82 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": "leovie/phpstan-baseline-guard",
"description": "Prevent your phpstan baseline from growing",
"license": "MIT",
"type": "library",
"keywords": [
"dev"
],
"authors": [
{
"name": "Leo Viezens",
"email": "leo.viezens@web.de"
}
],
"require": {
"php": ">=8.1",
"nette/neon": "^3.4",
"symfony/console": "^6.2"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.29",
"infection/infection": "^0.26.18",
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^9.5",
"psalm/plugin-phpunit": "^0.18.4",
"vimeo/psalm": "^5.6"
},
"autoload": {
"psr-4": {
"Leovie\\PhpstanBaselineGuard\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Leovie\\PhpstanBaselineGuard\\Tests\\": "tests/"
}
},
"bin": [
"phpstan-baseline-guard"
],
"config": {
"allow-plugins": {
"infection/extension-installer": true,
"ergebnis/composer-normalize": true
}
},
"scripts": {
"build-phar": "curl -JL -o phar-composer.phar https://clue.engineering/phar-composer-latest.phar && composer install --no-dev && php phar-composer.phar build . ./build/artifacts/phpstan-baseline-guard.phar && composer install",
"infection": "infection --threads=max --only-covered",
"phpstan": "phpstan",
"psalm": "psalm --no-progress --no-cache",
"test": [
"composer normalize --dry-run",
"@phpstan",
"@psalm",
"@test:unit",
"@infection",
"@test:functional"
],
"test:functional": "phpunit --testsuite=Functional --no-coverage",
"test:unit": "phpunit --testsuite=Unit"
}
}