-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.21 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
{
"keywords" : [
"wordpress",
"plugin",
"namespace",
"building",
"publishing",
"publish"
],
"autoload" : {
"psr-4" : {
"Tschallacka\\" : "src/Tschallacka"
}
},
"name" : "tschallacka/wpbuilder",
"type" : "wordpress-plugin",
"description" : "This tool is to help you write wordpress plugins and to \"compile\" them before publishing so all composer dependencies are inserted into the plugins namespace",
"license" : "MIT",
"require" : {
"php" : ">=7.0"
},
"authors" : [{
"name" : "Tschallacka",
"email" : "tschallacka@outlook.com",
"homepage" : "https://www.tschallacka.de",
"role" : "Main Author"
}, {
"name" : "Denis de Bernardy",
"role" : "Author of one function",
"homepage" : "https://stackoverflow.com/users/417194/denis-de-bernardymesoconcepts.com",
"email" : "d@mesoconcepts.com"
}, {
"name" : "Nicolas Chambrier",
"role" : "Author of one function",
"homepage" : "http://naholyr.fr"
}
],
"support" : {
"source" : "https://github.com/tschallacka/wordpress-composer-plugin-builder.git",
"wiki" : "https://github.com/tschallacka/wordpress-composer-plugin-builder/wiki",
"issues" : "https://github.com/tschallacka/wordpress-composer-plugin-builder/issues"
}
}