-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.42 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
{
"name": "wemakecustom/wp-skeleton-installer",
"description": "Installer scripts for https://github.com/wemakecustom/wp-skeleton",
"license": "GPL-2.0",
"authors": [
{
"name": "WeMakeCustom",
"email": "[email protected]",
"homepage": "http://www.wemakecustom.com"
}
],
"autoload": {
"psr-4": { "WMC\\Wordpress\\SkeletonInstaller\\": "src/" }
},
"bin": [
"scripts/rename-prefix.php",
"scripts/update-wpskeleton.php"
],
"require": {
"johnpbloch/wordpress": "^4.0",
"wp-cli/wp-cli": "*",
"wemakecustom/composer-script-utils": "^1.0",
"wemakecustom/wp-pot-generator": "~2.0@dev"
},
"scripts": {
"post-install-cmd": [
"WMC\\Wordpress\\SkeletonInstaller\\Composer\\ScriptHandler::handle"
],
"post-update-cmd": [
"WMC\\Wordpress\\SkeletonInstaller\\Composer\\ScriptHandler::handle"
]
},
"extra": {
"confs-dir": "test/confs",
"web-dir": "test/htdocs",
"wordpress-install-dir": "vendor/wordpress/wordpress",
"installer-paths": {
"test/htdocs/wp-content/plugins/{$name}/": ["type:wordpress-plugin"],
"test/htdocs/wp-content/mu-plugins/{$name}/": ["type:wordpress-muplugin"],
"test/htdocs/wp-content/themes/composer/{$name}/": ["type:wordpress-theme"]
}
}
}