-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 958 Bytes
/
composer.json
File metadata and controls
39 lines (39 loc) · 958 Bytes
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
{
"name": "oblak/wp-hook-di",
"description": "Simplifies the use of WordPress hooks by allowing you to use simple dependency injection.",
"license": "GPL-2.0-only",
"type": "library",
"authors": [
{
"name": "Sibin Grasic",
"email": "sibin.grasic@oblak.studio"
}
],
"require": {
"php": ">=8.1",
"automattic/jetpack-constants": "^2",
"x-wp/hook-invoker": "^1"
},
"require-dev": {
"oblak/wordpress-coding-standard": "^1"
},
"suggest": {
"automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package."
},
"minimum-stability": "beta",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Oblak\\WP\\": "src"
},
"files": [
"src/Utils/oblak-wp-metadata-utils.php",
"src/Utils/oblak-wp-hook-utils.php"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}