-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
42 lines (42 loc) · 1.61 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
{
"name" : "varunsridharan/vsp-framework",
"type" : "library",
"description" : "Simple & Lightweight WP Plugin Framework",
"homepage" : "https://github.com/varunsridharan/vsp-framework",
"license" : "GPL-3.0+",
"scripts" : {
"classmaps" : "classmap-generator \"includes/\" ./vsp-classmaps.php",
"makepot" : "makepot ./wp-pot.json",
"add-textdomain" : "add-textdomain -i vsp-framework ./",
"build" : [ "@classmaps", "@add-textdomain", "@makepot" ],
"wpo-dev" : "rm -rf ./vendor/wponion/wponion && git clone --branch development https://github.com/wponion/wponion ./vendor/wponion/wponion/"
},
"autoload" : {
"files" : [
"vsp-init.php"
]
},
"require-dev" : {
"varunsridharan/php-classmap-generator" : "*",
"varunsridharan/wp-cli-textdomain" : "^1.1"
},
"require" : {
"varunsridharan/wpallimport_rapidaddon" : "*",
"wponion/wponion" : "*",
"varunsridharan/sweetalert2-php" : ">=1.0",
"varunsridharan/wp-ajaxer" : ">=1.0",
"varunsridharan/wp-post" : ">=1.0",
"varunsridharan/wp-transient-api" : ">=1.0",
"varunsridharan/wp-db-table" : ">=1.2.1",
"varunsridharan/wp-localizer" : ">=1.0",
"varunsridharan/wp-plugin-version-management" : ">=1.0"
},
"authors" : [
{
"name" : "Varun Sridharan",
"email" : "varunsridharan23@gmail.com",
"homepage" : "https://varunsridharan.in",
"role" : "Developer"
}
]
}