-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
40 lines (40 loc) · 1.1 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
{
"name": "bueltge/wordpress-basis-theme",
"description": "A simple Theme to start a new WordPress Theme",
"keywords" : ["wordpress", "theme"],
"license": "GPL-2.0-or-later",
"type": "wordpress-theme",
"homepage": "http://wpbasis.de/",
"authors": [
{
"name": "Frank Bültge",
"homepage": "https://bueltge.de",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/bueltge/wordpress-basis-theme/issues"
},
"require": {
"php": ">=5.6"
},
"require-dev": {
"phpmd/phpmd": "~2.10",
"phan/phan": "~4.0",
"squizlabs/php_codesniffer": "~3.6",
"wp-coding-standards/wpcs": "~2.3",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"dealerdirect/phpcodesniffer-composer-installer": "~0.7"
},
"minimum-stability": "stable",
"scripts": {
"cs": "phpcs -p",
"csf": "@php ./vendor/bin/phpcbf",
"pu": "@php ./vendor/bin/phpunit",
"analyze": [
"phpmd --suffixes php --exclude vendor/,node_modules/,mysql/ ./ ansi phpmd.xml",
"phan --output-mode text --no-progress-bar --color --allow-polyfill-parser"
]
}
}