-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.42 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
{
"name": "mindkomm/theme-lib-links-phone",
"description": "Collection of phone link helper functions for WordPress themes",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Lukas Gaechter",
"email": "[email protected]",
"homepage": "https://www.mind.ch"
}
],
"require": {
"php": ">=7.0.0"
},
"require-dev": {
"mindkomm/qa": "^0.4.1"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"files": [
"autoload.php"
]
},
"config": {
"allow-plugins": {
"phpro/grumphp-shim": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true,
"ergebnis/composer-normalize": true
}
},
"extra": {
"grumphp": {
"config-default-path": "vendor/mindkomm/qa/config/grumphp.yml"
}
},
"scripts": {
"analyse": [
"phpstan analyse --memory-limit=1G"
],
"cs": "phpcs --colors",
"cs:fix": "phpcbf --filter=GitModified",
"grump": [
"grumphp git:pre-commit"
],
"lint-composer": "@composer normalize --dry-run",
"lint-composer:fix": "@composer normalize",
"qa": [
"@lint-composer",
"@cs",
"@analyse"
]
}
}