forked from Codeinwp/neve
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 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": "codeinwp/neve",
"description": "Neve theme by ThemeIsle",
"homepage": "https://themeisle.com/themes/neve/",
"license": "GPL-2.0+",
"authors": [
{
"name": "ThemeIsle Team",
"email": "[email protected]",
"homepage": "https://themeisle.com"
}
],
"support": {
"issues": "https://github.com/Codeinwp/neve/issues",
"source": "https://github.com/Codeinwp/neve"
},
"require": {
"codeinwp/themeisle-sdk": "^3.0"
},
"autoload": {
"psr-4": {
"HFG\\": "header-footer-grid/",
"Neve_Dash\\": "dashboard/inc/"
},
"files": [
"vendor/codeinwp/themeisle-sdk/load.php"
]
},
"scripts": {
"format": "phpcbf --standard=phpcs.xml --report-summary --report-source -s --runtime-set testVersion 5.4- ",
"phpcs": "phpcs --standard=phpcs.xml -s --runtime-set testVersion 5.5-",
"lint": "composer run-script phpcs",
"post-install-cmd": [
"yarn run bump-vendor || true"
],
"post-update-cmd": [
"yarn run bump-vendor || true"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"optimize-autoloader": true
},
"extra": {
"installer-disable": "true"
},
"require-dev": {
"wptrt/wpthemereview": "*",
"automattic/vipwpcs": "^2.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0"
}
}