-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
45 lines (45 loc) · 1.2 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
{
"name": "wordpress/skeleton",
"description": "Composer based WordPress project skeleton.",
"keywords": [ "WordPress", "Skeleton", "composer", "wpackagist" ],
"homepage": "https://github.com/ttskch/WordPress.Skeleton",
"license": "GPL-2.0",
"authors": [
{
"name": "Takashi Kanemoto",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"require": {
"php": ">=5.3",
"johnpbloch/wordpress": "*",
"wpackagist-plugin/wp-i18n": "dev-trunk",
"wpackagist-plugin/wp-multibyte-patch": "~2.3"
},
"require-dev": {
"composer/composer": "^1.3"
},
"extra": {
"wordpress-install-dir": "wp"
},
"scripts": {
"post-package-install": "Installer::postPackageInstall",
"post-package-update": "Installer::postPackageUpdate",
"init-wp": "Installer::initWordPress",
"post-create-project-cmd": "@php bin/initializer.php"
},
"autoload": {
"psr-4": {
"": "scripts/"
}
},
"config": {
"secure-http": false
}
}