-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
52 lines (52 loc) · 1.16 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": "lukasbestle/kirby-versions",
"description": "Versions Plugin for Kirby",
"license": "MIT",
"type": "kirby-plugin",
"version": "2.0.1",
"authors": [
{
"name": "Lukas Bestle",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1.0 <8.4.0",
"getkirby/cms": "^4.0",
"getkirby/composer-installer": "^1.1"
},
"minimum-stability": "RC",
"autoload-dev": {
"psr-4": {
"LukasBestle\\": "tests/"
}
},
"config": {
"allow-plugins": {
"getkirby/composer-installer": true
}
},
"extra": {
"installer-name": "versions",
"kirby-cms-path": false
},
"scripts": {
"analyze": [
"@analyze:composer",
"@analyze:psalm",
"@analyze:phpcpd",
"@analyze:phpmd"
],
"analyze:composer": "composer validate --strict --no-check-version --no-check-all",
"analyze:phpcpd": "phpcpd --fuzzy --exclude node_modules --exclude tests --exclude vendor .",
"analyze:phpmd": "phpmd . ansi phpmd.xml.dist --exclude 'node_modules/*,tests/*,vendor/*'",
"analyze:psalm": "psalm",
"ci": [
"@fix",
"@analyze",
"@test"
],
"fix": "php-cs-fixer fix",
"test": "phpunit --stderr --coverage-html=tests/coverage"
}
}