forked from dereckson/wp-cli-polylang
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 911 Bytes
/
composer.json
File metadata and controls
40 lines (40 loc) · 911 Bytes
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
{
"name" : "dereckson/wp-cli-polylang",
"type" : "command",
"description" : "Add a `wp polylang` command to support the Polylang plug-in",
"keywords" : [
"wp-cli",
"polylang",
"i18n"
],
"homepage" : "https://github.com/dereckson/wp-cli-polylang",
"license" : "GPLv2",
"authors" : [{
"name" : "Sébastien Santoro aka Dereckson",
"email" : "dereckson@espace-win.org",
"homepage" : "http://www.dereckson.be",
"role" : "Developer"
}, {
"name" : "Nils Woetzel",
"email" : "nils.woetzel@h-its.org",
"homepage" : "http://www.h-its.org",
"role" : "Developer"
}
],
"require" : {
"php" : ">=5.3.0",
"wp-cli/wp-cli" : "0.17.1"
},
"autoload" : {
"files" : [
"PolylangHelperFunctions.php",
"Polylang_Command.php"
]
},
"repositories" : [{
"type" : "git",
"url" : "https://github.com/nwoetzel/wp-cli-polylang",
"name" : "nwoetzel/wp-cli-polylang"
}
]
}