forked from Codeinwp/neve
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
62 lines (62 loc) · 1.65 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
61
62
{
"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",
"wptt/webfont-loader": "^1.1"
},
"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 7.0- ",
"format-fix-exit": "\"vendor/bin/phpcbf-fix-exit-0\" --standard=phpcs.xml --report-summary --report-source -s --runtime-set testVersion 7.0- ",
"phpcs": "phpcs --standard=phpcs.xml -s --runtime-set testVersion 7.0-",
"lint": "composer run-script phpcs",
"phpcs-i": "phpcs -i",
"phpstan": "phpstan analyse",
"post-install-cmd": [
"[ ! -z \"$GITHUB_ACTIONS\" ] && yarn run bump-vendor || true"
],
"post-update-cmd": [
"[ ! -z \"$GITHUB_ACTIONS\" ] && yarn run bump-vendor || true"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"platform-check": false,
"platform": {
"php": "7.0"
}
},
"extra": {
"installer-disable": "true"
},
"require-dev": {
"codeinwp/phpcs-ruleset": "dev-main",
"phpstan/phpstan": "0.12.90",
"szepeviktor/phpstan-wordpress": "^0.7.6",
"php-stubs/woocommerce-stubs": "^5.4"
}
}