-
Notifications
You must be signed in to change notification settings - Fork 84
/
composer-dev.json
73 lines (72 loc) · 1.92 KB
/
composer-dev.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
63
64
65
66
67
68
69
70
71
72
73
{
"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"
}
],
"type": "wordpress-theme",
"support": {
"issues": "https://github.com/Codeinwp/neve/issues",
"source": "https://github.com/Codeinwp/neve"
},
"require": {
"codeinwp/themeisle-sdk": "^3.2",
"wptt/webfont-loader": "dev-master"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/Codeinwp/webfont-loader"
}
],
"autoload": {
"psr-4": {
"HFG\\": "header-footer-grid/"
},
"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": "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": "./vendor/bin/phpstan analyse --memory-limit=2G --configuration=phpstan.neon",
"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.2"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"installer-disable": "true"
},
"require-dev": {
"codeinwp/phpcs-ruleset": "dev-main",
"phpstan/phpstan": "1.8.7",
"szepeviktor/phpstan-wordpress": "^v1.1.7",
"php-stubs/woocommerce-stubs": "^7.4.0",
"php-stubs/wordpress-stubs": "^6.1"
}
}