-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
55 lines (55 loc) · 1.23 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
{
"name": "afragen/translations-updater",
"description": "This framework provides automatic decoupled languate pack updates from a public repository for your WordPress plugin or theme.",
"type": "library",
"license": "MIT",
"version": "1.2.0",
"keywords": [
"wordpress",
"plugin",
"theme",
"updater",
"language pack",
"translations"
],
"authors": [
{
"name": "Andy Fragen",
"email": "[email protected]",
"homepage": "https://thefragens.com",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/afragen/translations-updater/issues",
"source": "https://github.com/afragen/translations-updater"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/afragen/translations-updater"
}
],
"prefer-stable": true,
"require": {
"php": ">=5.4"
},
"require-dev": {
"wp-coding-standards/wpcs": "^3.0.0"
},
"autoload": {
"psr-4": {
"Fragen\\Translations_Updater\\": "src/Translations_Updater/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"wpcs": [
"vendor/bin/phpcbf .; vendor/bin/phpcs ."
]
}
}