-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 1.58 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
{
"name": "x-wp/hook-invoker",
"description": "Provides standardized way to declare and invoke WordPress hooks",
"license": "GPL-2.0-only",
"type": "library",
"keywords": [
"wordpress",
"hooks",
"actions",
"filters",
"hook-manager",
"extended-wp"
],
"authors": [
{
"name": "Sibin Grasic",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/x-wp/hook-manager/issues"
},
"require": {
"php": ">=8.1",
"automattic/jetpack-constants": "^2.0",
"psr/container": "^2.0",
"x-wp/helper-classes": "^1.3",
"x-wp/helper-functions": "^1.6",
"x-wp/hook-contracts": "^1"
},
"require-dev": {
"oblak/wordpress-coding-standard": "^1",
"php-stubs/woocommerce-stubs": "^9.0",
"php-stubs/wordpress-stubs": "^6.5",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.1",
"swissspidy/phpstan-no-private": "^0.2.0",
"szepeviktor/phpstan-wordpress": "^1.3"
},
"provide": {
"x-wp/hook-implementation": "1.0.0"
},
"suggest": {
"automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package."
},
"autoload": {
"psr-4": {
"XWP\\Hook\\": "src/"
},
"files": [
"src/Functions/xwp-hook-helper-fns.php"
]
},
"config": {
"allow-plugins": {
"automattic/jetpack-autoloader": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
},
"sort-packages": true
}
}