-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 1004 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 1004 Bytes
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
{
"name": "creativecommons/creativecommons-base",
"description": "The Creative Commons base theme",
"type": "wordpress-theme",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Hugo Solar",
"email": "hugo@creativecommons.org"
},
{
"name": "Brylie Christopher Oxley",
"email": "brylie@creativecommons.org"
}
],
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.1",
"phpcompatibility/php-compatibility": "^9.1",
"squizlabs/php_codesniffer": "3.*",
"wp-coding-standards/wpcs": "^2.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1"
},
"scripts": {
"compat": "phpcs -p --standard=PHPCompatibility --runtime-set testVersion 7.0 -n . --extensions=php --cache",
"fix": "phpcbf --standard=WordPress . --extensions=php --ignore=vendor,development",
"lint": "parallel-lint . --blame --exclude vendor",
"sniff": "phpcs --standard=WordPress . --ignore=vendor,development --extensions=php"
}
}