-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
48 lines (48 loc) · 1.19 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
{
"name": "oblak/wp-plugin-installer",
"description": "Simplifies the installation and activation of WordPress plugins",
"license": "GPL-2.0-only",
"type": "library",
"authors": [
{
"name": "Sibin Grasic",
"email": "[email protected]"
}
],
"require": {
"php": ">= 8.0",
"automattic/jetpack-constants": "^2",
"woocommerce/action-scheduler": "^3.7",
"x-wp/admin-notice-manager": "^1.0",
"x-wp/helper-traits": "^1.18"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.42",
"oblak/wordpress-coding-standard": "^1",
"wp-cli/wp-cli": "^2.11"
},
"suggest": {
"automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package."
},
"autoload": {
"psr-4": {
"Oblak\\WP\\": "src"
},
"files": [
"src/wppi-as-loader.php"
]
},
"config": {
"platform": {
"php": "8.0"
},
"allow-plugins": {
"automattic/jetpack-autoloader": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true
},
"classmap-authoritative": true,
"optimize-autoloader": true,
"sort-packages": true
}
}