-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
60 lines (60 loc) · 1.8 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
{
"name":"creativecommons/wp-theme-cc-chapter",
"description":"The Creative Commons Chapter theme",
"type":"wordpress-theme",
"license":"GPL-2.0-or-later",
"authors": [
{
"name":"Dale McGladdery",
"email":"[email protected]"
},
{
"name":"Hugo Solar",
"email":"[email protected]"
},
{
"name":"Quentin Rogers",
"email":"[email protected]"
},
{
"name":"Timid Robot Zehta",
"email":"[email protected]"
}
],
"repositories": [
{
"type":"vcs",
"url":"https://github.com/creativecommons/queulat",
"no-api":true
},
{
"type":"composer",
"url":"https://wpackagist.org"
}
],
"require": {
"composer/installers":"~1.0",
"felipelavinz/queulat":"2019.4.2",
"wpackagist-theme/twentysixteen":"1.9"
},
"extra": {
"installer-name":"cc-chapter",
"installer-paths" : {
"../../mu-plugins/{$name}" : ["type:wordpress-muplugin"],
"../../themes/{$name}" : ["wpackagist-theme/twentysixteen"]
}
},
"scripts": {
"compat":"phpcs -p --standard=PHPCompatibility --runtime-set testVersion 7.0 -n . --extensions=php --cache",
"fix":"phpcbf --standard=WordPress . --extensions=php",
"lint":"parallel-lint . --blame --exclude vendor",
"sniff":"phpcs --standard=WordPress ."
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer":"^0.4.3",
"jakub-onderka/php-parallel-lint":"^0.9.2",
"phpcompatibility/php-compatibility":"^9.1",
"squizlabs/php_codesniffer":"3.*",
"wp-coding-standards/wpcs":"^2.0"
}
}