-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.53 KB
/
composer.json
File metadata and controls
60 lines (60 loc) · 1.53 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
{
"name": "x-wp/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",
"x-wp/helper-functions": "^1.19",
"x-wp/helper-classes": "^1.19"
},
"require-dev": {
"oblak/wordpress-coding-standard": "^1.1.1",
"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",
"symfony/var-dumper": "^5.4",
"szepeviktor/phpstan-wordpress": "^1.3"
},
"suggest": {
"automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package."
},
"autoload": {
"psr-4": {
"XWP\\Updater\\": "src/"
},
"files": [
"src/Functions/xwp-updater-bootstrap.php",
"src/Functions/xwp-updater-util-fns.php"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
}
}
}