-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.28 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
{
"name": "martinsr/constraint-updater",
"type": "composer-plugin",
"license": "MIT",
"authors": [
{
"name": "Martins Rucevskis"
}
],
"require": {
"php": "^8.1",
"composer-plugin-api": "^2.3",
"thecodingmachine/safe": "^2.5"
},
"require-dev": {
"composer/composer": "^2.6.6",
"phpunit/phpunit": "10.4.2",
"phpstan/phpstan": "^1.10.50",
"friendsofphp/php-cs-fixer": "^3.41.1",
"thecodingmachine/phpstan-safe-rule": "^1.2",
"rector/rector": "^0.18.13"
},
"autoload": {
"psr-4": {
"MartinsR\\ComposerConstraintUpdater\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MartinsR\\ComposerConstraintUpdater\\Tests\\Unit\\": "tests/unit"
}
},
"scripts": {
"use-safe": [
"vendor/bin/rector process src/ --config vendor/thecodingmachine/safe/rector-migrate.php"
],
"php-cs-fixer": [
"vendor/bin/php-cs-fixer fix --config=phpCsFixerConfig.php-dist"
],
"php-stan": "phpstan analyse",
"rector": "vendor/bin/rector process --config rector.php",
"test": "vendor/bin/phpunit --testdox",
"code-quality": [
"@use-safe",
"@rector",
"@php-cs-fixer",
"@php-stan"
]
},
"extra": {
"class": "MartinsR\\ComposerConstraintUpdater\\ComposerPlugin"
}
}