-
Notifications
You must be signed in to change notification settings - Fork 33
/
composer.json
82 lines (82 loc) · 1.94 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "codeinwp/otter-blocks",
"description": "A set of awesome Gutenberg Blocks by ThemeIsle.",
"type": "wordpress-plugin",
"version": "3.0.7",
"repositories":[
{
"type":"composer",
"url":"https://wpackagist.org",
"only": [
"wpackagist-plugin/*"
]
}
],
"require-dev": {
"squizlabs/php_codesniffer": "^3.3",
"wp-coding-standards/wpcs": "^1",
"phpcompatibility/php-compatibility": "^9",
"dealerdirect/phpcodesniffer-composer-installer": "0.7.1",
"automattic/vipwpcs": "^1.0.0",
"phpunit/phpunit": "9.6.5",
"yoast/phpunit-polyfills": "^3.0",
"phpstan/phpstan": "^1.10",
"szepeviktor/phpstan-wordpress": "^1.3",
"php-stubs/woocommerce-stubs": "^9.1",
"php-stubs/acf-pro-stubs": "^6.0",
"spaze/phpstan-stripe": "^2.4",
"wpackagist-plugin/woocommerce": "*"
},
"license": "GPL-2.0+",
"authors": [
{
"name": "ThemeIsle Team",
"email": "[email protected]"
}
],
"scripts": {
"lint": "phpcs",
"format": "phpcbf",
"phpunit": "phpunit",
"phpstan": "phpstan analyse --memory-limit 2G"
},
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"platform": {
"php": "7.4"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true
}
},
"extra": {
"installer-disable": "true",
"installer-paths": {
"vendor/wp-content/plugins/{$name}/": ["type:wordpress-plugin"]
}
},
"autoload": {
"classmap": ["inc/"],
"files": [
"vendor/codeinwp/themeisle-sdk/load.php"
]
},
"autoload-dev": {
"classmap": ["plugins/otter-pro/inc/"],
"files": [
"development.php"
]
},
"minimum-stability": "dev",
"require": {
"codeinwp/themeisle-sdk": "^3.2",
"masterminds/html5": "^2.7",
"tubalmartin/cssmin": "^4.1",
"wptt/webfont-loader": "^1.1",
"sabberworm/php-css-parser": "^8.4",
"stripe/stripe-php": "^15.3",
"enshrined/svg-sanitize": "^0.19.0"
}
}