-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 1.52 KB
/
composer.json
File metadata and controls
65 lines (65 loc) · 1.52 KB
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
{
"name": "x-wp/helper-collection",
"description": "Collection of various helper components used by xWP packages",
"license": "GPL-2.0-only",
"type": "library",
"keywords": [
"Utilities",
"classes",
"decoupling",
"interfaces",
"interoperability",
"standards",
"extended-wp"
],
"authors": [
{
"name": "Sibin Grasic",
"email": "sibin.grasic@oblak.studio"
}
],
"require": {
"php": ">=8.0"
},
"require-dev": {
"automattic/jetpack-constants": "^2.0",
"oblak/wordpress-coding-standard": "^1",
"php-stubs/woocommerce-stubs": "^9.3"
},
"replace": {
"x-wp/helper-classes": "self.version",
"x-wp/helper-function": "self.version",
"x-wp/helper-traits": "self.version",
"x-wp/helper-woocommerce": "self.version"
},
"suggest": {
"automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package."
},
"autoload": {
"psr-4": {
"XWC\\": "WC/",
"XWP\\Helper\\": ""
},
"classmap": [
"Classes/WP/",
"Functions/"
],
"files": [
"Functions/xwp-helper-fns-arr.php",
"Functions/xwp-helper-fns-meta.php",
"Functions/xwp-helper-fns-num.php",
"Functions/xwp-helper-fns-req.php",
"Functions/xwp-helper-fns.php",
"WC/xwc-helper-fns-api.php",
"WC/xwc-helper-fns-core.php"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"platform": {
"php": "8.0"
}
}
}