-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
51 lines (51 loc) · 1.3 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
{
"name": "fabianmichael/kirby-markdown-field",
"description": "Super-sophisticated markdown editor for Kirby 4",
"homepage": "https://github.com/fabianmichael/kirby-markdown-field",
"type": "kirby-plugin",
"version": "3.0.0-alpha.2",
"license": "MIT",
"authors": [
{
"name": "Sylvain Julé",
"email": "[email protected]"
},
{
"name": "Fabian Michael",
"email": "[email protected]"
}
],
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.13",
"phpunit/phpunit": "^9",
"phpmd/phpmd" : "@stable",
"vimeo/psalm": "^5.1"
},
"require": {
"php": ">=8.1.0",
"getkirby/composer-installer": "^1.2"
},
"extra": {
"kirby-cms-path": false,
"installer-name": "markdown-field"
},
"minimum-stability": "RC",
"scripts": {
"linter": "vendor/bin/php-cs-fixer fix --dry-run --diff",
"linter:fix": "vendor/bin/php-cs-fixer fix --diff",
"test": "phpunit --stderr",
"analyze": [
"@analyze:composer",
"@analyze:psalm",
"@analyze:phpmd"
],
"analyze:composer": "composer validate --strict --no-check-version --no-check-all",
"analyze:psalm": "psalm",
"analyze:phpmd": "phpmd . ansi phpmd.xml.dist --exclude 'tests/*,vendor/*'"
},
"config": {
"allow-plugins": {
"getkirby/composer-installer": true
}
}
}