-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
51 lines (51 loc) · 1.17 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
{
"name": "oblak/wp-package-updater",
"description": "Simplifies the process of updating WordPress packages from custom repositories.",
"license": "GPL-2.0-only",
"type": "library",
"non-feature-branches": [
"feat/*"
],
"keywords": [
"wordpress",
"composer",
"package",
"updater"
],
"authors": [
{
"name": "Sibin Grasic",
"email": "sibin.grasic@oblak.studio",
"homepage": "https://oblak.host",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/oblakstudio/wp-package-updater/issues"
},
"require": {
"php": ">= 8.0"
},
"require-dev": {
"oblak/wordpress-coding-standard": "^1",
"ergebnis/composer-normalize": "^2.31"
},
"suggest": {
"automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package."
},
"autoload": {
"psr-4": {
"Oblak\\WP\\": "src"
},
"files": [
"src/Utils/oblak-wppu-init.php",
"src/Utils/oblak-wppu-utils.php"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true
}
}
}