-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
51 lines (51 loc) · 1.04 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": "afragen/git-updater-lite",
"description": "A simple class to integrate with Git Updater for standalone plugin/theme updates.",
"version": "2.3.0",
"type": "library",
"keywords": [
"wordpress",
"plugin",
"theme",
"updater"
],
"license": "MIT",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/afragen/git-updater-lite"
}
],
"authors": [
{
"name": "Andy Fragen",
"email": "andy@thefragens.com",
"homepage": "https://github.com/afragen/git-updater-lite",
"role": "Developer"
}
],
"prefer-stable": true,
"require": {
"php": ">=7.4"
},
"autoload": {
"classmap": [
"Lite.php"
]
},
"require-dev": {
"squizlabs/php_codesniffer": "3.10.3",
"wp-coding-standards/wpcs": "~3.1.0",
"yoast/phpunit-polyfills": "^1.1.0"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"wpcs": [
"vendor/bin/phpcbf .; vendor/bin/phpcs ."
]
}
}