forked from omz13/kirby3-xmlsitemap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
66 lines (66 loc) · 1.58 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
64
65
66
{
"name": "omz13/kirby3-xmlsitemap",
"type": "kirby-plugin",
"description": "kirby3 plugin to generate an xml-based sitemap",
"keywords": [
"kirby3",
"plugin",
"sitemap"
],
"version": "1.2.1",
"license": "MIT",
"authors": [
{
"name": "David Somers",
"email": "[email protected]",
"homepage": "https://meldingstuff.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.1",
"getkirby/composer-installer": "^1.1"
},
"require-dev": {
"getkirby/cms": "^3.0.1",
"jakub-onderka/php-parallel-lint": "^1.0",
"localheinz/composer-normalize": "^1.0.0",
"omz13/omz13-coding-standard": "dev-master",
"phpcompatibility/php-compatibility": "^8.2",
"phpmd/phpmd": "^2.6",
"phpstan/phpstan": "^0.11",
"phpstan/phpstan-strict-rules": "^0.11",
"roave/security-advisories": "dev-master"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"autoload": {
"psr-4": {
"omz13\\": "src/"
}
},
"minimum-stability": "beta",
"scripts": {
"build": [
"@sanity",
"composer dumpautoload -o"
],
"fix": [
"./vendor/bin/phpcbf ./src/*",
"./vendor/bin/phpcs -s ./src/*"
],
"lint": "./vendor/bin/parallel-lint ./src/*",
"mess": "./vendor/bin/phpmd ./src text codesize,controversial,design,unusedcode",
"sanity": [
"make tools",
"@lint",
"./vendor/bin/phpcs -n ./src/*",
"@stan",
"@mess"
],
"stan": "./vendor/bin/phpstan analyse --level 7 ./src",
"style": "./vendor/bin/phpcs ./src/*"
}
}