-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
39 lines (39 loc) · 900 Bytes
/
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
{
"name": "afragen/language-pack-maker",
"description": "Library that helps create git sourced WordPress Language Packs from po files.",
"version": "3.2.1",
"type": "library",
"license": "MIT",
"keywords": [
"wordpress",
"language packs",
"translations"
],
"authors": [
{
"name": "Andy Fragen",
"email": "andy@thefragens.com",
"homepage": "https://thefragens.com",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/afragen/language-pack-maker/issues",
"source": "https://github.com/afragen/language-pack-maker"
},
"prefer-stable": true,
"require": {
"php": ">=7.0",
"gettext/gettext": "^4.8",
"wp-cli/i18n-command": "^2",
"afragen/wp-cli-runner": "^0.1"
},
"autoload": {
"psr-4": {
"Fragen\\Language_Pack_Maker\\": "src/"
},
"files": [
"index.php"
]
}
}