-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (49 loc) · 1.25 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": "motivast/mizar",
"description": "Mizar theme.",
"version": "0.2.1",
"type": "wordpress-theme",
"license": "GPL-2.0+",
"authors": [
{
"name": "Motivast",
"email": "hello@motivast.com"
}
],
"repositories": [
{
"type":"composer",
"url":"https://wpackagist.org"
}
],
"require-dev": {
"php": ">=5.6.0",
"phing/phing": "2.16.0",
"wp-cli/wp-cli": "1.5.0",
"phpunit/phpunit": "6.5.7",
"10up/wp_mock": "0.3.0",
"squizlabs/php_codesniffer": "3.2.3",
"wimg/php-compatibility": "8.1.0",
"wp-coding-standards/wpcs": "0.14.1",
"sebastian/phpcpd": "3.0.0",
"pdepend/pdepend": "2.2.4",
"phploc/phploc": "4.0.0",
"phpmd/phpmd": "2.4.2"
},
"extra": {
"installer-paths": {
"wordpress/wp-content/plugins/{$name}/": ["type:wordpress-plugin"],
"wordpress/wp-content/themes/{$name}/": ["type:wordpress-theme"]
}
},
"scripts": {
"post-install-cmd": [
"./vendor/bin/phing wp:download",
"./vendor/bin/phing setup"
],
"post-update-cmd": [
"./vendor/bin/phing wp:download",
"./vendor/bin/phing setup"
]
}
}