-
-
Notifications
You must be signed in to change notification settings - Fork 462
/
composer.json
60 lines (60 loc) · 1.39 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
52
53
54
55
56
57
58
59
60
{
"name": "afragen/git-updater",
"description": "A plugin to automatically update GitHub, Bitbucket, GitLab, or Gitea hosted plugins, themes, and language packs.",
"type": "wordpress-plugin",
"keywords": [
"wordpress",
"plugin",
"theme",
"updater"
],
"license": "MIT",
"authors": [
{
"name": "Andy Fragen",
"email": "[email protected]",
"homepage": "https://thefragens.com",
"role": "Developer"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/afragen/git-updater"
}
],
"support": {
"issues": "https://github.com/afragen/git-updater/issues",
"source": "https://github.com/afragen/git-updater"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.4",
"afragen/wordpress-plugin-readme-parser": "dev-master",
"afragen/singleton": "dev-master",
"afragen/wp-dependency-installer": "^4",
"freemius/wordpress-sdk": "^2.6"
},
"require-dev": {
"wp-coding-standards/wpcs": "^3.0.0"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload": {
"psr-4": {
"Fragen\\Git_Updater\\": "src/Git_Updater/"
}
},
"scripts": {
"make-pot": [
"wp i18n make-pot . languages/git-updater.pot"
],
"wpcs": [
"vendor/bin/phpcbf .; vendor/bin/phpcs ."
]
}
}