-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (52 loc) · 2.15 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
{
"name": "codigo/codigo",
"description": "Basic Child Starter Theme for Understrap",
"type": "wordpress-theme",
"license": "MIT",
"minimum-stability": "stable",
"keywords": [
"wordpress",
"theme",
"bootstrap",
"vue"
],
"homepage": "https://github.com/pablorica/wordpress_codigo_theme",
"authors": [
{
"name": "Pablo Rica",
"homepage": "https://codigo.co.uk"
}
],
"require": {
"php": ">=5.6"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.8",
"php-parallel-lint/php-parallel-lint": "^1.3.2",
"phpcompatibility/phpcompatibility-wp": "^2.1.4",
"phpmd/phpmd": "^2.14.0",
"phpstan/phpstan": "^1.9.0",
"roave/security-advisories": "dev-master",
"szepeviktor/phpstan-wordpress": "^1.1.3",
"wp-coding-standards/wpcs": "^2.3.0",
"wptrt/wpthemereview": "^0.2.1"
},
"scripts": {
"php-lint": "@php ./vendor/php-parallel-lint/php-parallel-lint/parallel-lint --exclude vendor --exclude node_modules --exclude dist --exclude .git --exclude .phpstan-cache .",
"phpcs": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs -p",
"phpcs-ga": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs -n --report=checkstyle",
"phpcs-fix": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcbf",
"phpcs-config-set" : "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs --config-set installed_paths ../../phpcompatibility/php-compatibility,../../phpcompatibility/phpcompatibility-paragonie,../../phpcompatibility/phpcompatibility-wp,../../wp-coding-standards/wpcs,../../wptrt/wpthemereview",
"phpmd": "@php ./vendor/phpmd/phpmd/src/bin/phpmd . ansi phpmd.xml",
"phpmd-baseline": "@phpmd -- --generate-baseline",
"phpmd-ga": "@php ./vendor/phpmd/phpmd/src/bin/phpmd . github phpmd.xml",
"phpstan": "@php ./vendor/phpstan/phpstan/phpstan analyse -a src/phpstan/autoload.php",
"phpstan-baseline": "@php ./vendor/phpstan/phpstan/phpstan analyse -a src/phpstan/autoload.php --generate-baseline",
"post-install-cmd": "@phpcs-config-set",
"post-update-cmd": "@phpcs-config-set"
},
"support": {
"issues": "https://github.com/pablorica/wordpress_codigo_theme/issues",
"source": "https://github.com/pablorica/wordpress_codigo_theme"
}
}