-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 1.07 KB
/
composer.json
File metadata and controls
38 lines (38 loc) · 1.07 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
{
"name": "soderlind/wordpress-github-updater",
"description": "Reusable GitHub updater helper for WordPress plugins, built on top of yahnis-elsts/plugin-update-checker",
"type": "library",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Per Soderlind",
"homepage": "https://soderlind.no"
}
],
"require": {
"php": ">=7.4",
"yahnis-elsts/plugin-update-checker": "^5.5"
},
"autoload": {
"psr-4": {
"Soderlind\\WordPress\\": "src/"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"keywords": [
"wordpress",
"plugin",
"updater",
"github"
],
"homepage": "https://github.com/soderlind/wordpress-plugin-github-updater",
"support": {
"issues": "https://github.com/soderlind/wordpress-plugin-github-updater/issues",
"source": "https://github.com/soderlind/wordpress-plugin-github-updater"
}
}