-
Notifications
You must be signed in to change notification settings - Fork 29
/
composer.json
53 lines (53 loc) · 1.3 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/visualizer",
"description": "Visualizer charts for WordPress.",
"keywords": [
"wordpress",
"charts",
"visualization"
],
"homepage": "https://themeisle.com/plugins/visualizer/",
"license": "GPL-2.0+",
"authors": [
{
"name": "ThemeIsle Team",
"email": "[email protected]",
"homepage": "https://themeisle.com"
}
],
"type": "wordpress-plugin",
"support": {
"issues": "https://github.com/Codeinwp/visualizer/issues",
"source": "https://github.com/Codeinwp/visualizer"
},
"require": {
"codeinwp/themeisle-sdk": "^3.3",
"neitanod/forceutf8": "~2.0",
"openspout/openspout": "^3.7"
},
"autoload": {
"files": [
"vendor/codeinwp/themeisle-sdk/load.php"
]
},
"scripts": {
"format": "phpcbf --standard=phpcs.xml --report-summary --report-source",
"lint": "phpcs --standard=phpcs.xml"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"platform": {
"php": "7.4"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require-dev": {
"wp-coding-standards/wpcs": "^2.3",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
"phpcompatibility/phpcompatibility-wp": "*"
}
}