forked from varunsridharan/git-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.75 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
56
{
"name" : "varunsridharan/",
"description" : "",
"readme" : "README.md",
"support" : {
"email" : "varunsridharan23@gmail.com",
"docs" : "",
"issues" : "",
"source" : ""
},
"homepage" : "https://github.com/varunsridharan",
"license" : "GPL-3.0-or-later",
"keywords" : [ ],
"require" : {
"wponion/wponion" : "*",
"varunsridharan/vsp-framework" : "*"
},
"require-dev" : {
"varunsridharan/wp-cli-textdomain" : "*",
"varunsridharan/wp2github-md" : "*",
"mustangostang/spyc" : "*",
"varunsridharan/php-classmap-generator" : "*"
},
"scripts" : {
"makepot" : "makepot ./wp-pot.json",
"add-textdomain" : "add-textdomain -i {textdomain} ./",
"classmaps" : "classmap-generator \"includes/\" ./vsp-classmaps.php",
"wpo-dev" : "rm -rf ./vendor/wponion/wponion && git clone --branch development https://github.com/wponion/wponion ./vendor/wponion/wponion/",
"vsp-dev" : "rm -rf ./vendor/varunsridharan/vsp-framework && git clone https://github.com/varunsridharan/vsp-framework ./vendor/varunsridharan/vsp-framework/",
"build" : [ "@classmaps", "@add-textdomain", "@makepot" ]
},
"autoload" : {
"psr-4" : { },
"psr-0" : { },
"classmap" : [ ],
"files" : [ ]
},
"authors" : [
{
"name" : "Varun Sridharan",
"email" : "varunsridharan23@gmail.com",
"homepage" : "http://varunsridharan.in",
"role" : "Developer"
}
],
"config" : {
"sort-packages" : true,
"optimize-autoloader" : true
},
"funding" : [
{
"type" : "paypal",
"url" : "https://www.paypal.me/varunsridharan23"
}
]
}