-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
77 lines (77 loc) · 1.78 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "wp-forge/wp-site",
"description": "Create a new WordPress site via Composer.",
"type": "project",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Micah Wood",
"homepage": "https://wpscholar.com"
}
],
"support": {
"source": "https://github.com/wp-forge/wp-site",
"issues": "https://github.com/wp-forge/wp-site/issues"
},
"repositories": {
"wpackagist": {
"type": "composer",
"url": "https://wpackagist.org"
}
},
"require": {
"php": ">=5.6",
"ext-curl": "*",
"ext-date": "*",
"ext-dom": "*",
"ext-filter": "*",
"ext-ftp": "*",
"ext-gd": "*",
"ext-hash": "*",
"ext-iconv": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-mbstring": "*",
"ext-mysqli": "*",
"ext-openssl": "*",
"ext-pcre": "*",
"ext-posix": "*",
"ext-SimpleXML": "*",
"ext-sockets": "*",
"ext-SPL": "*",
"ext-tokenizer": "*",
"ext-xml": "*",
"ext-xmlreader": "*",
"ext-zlib": "*",
"composer/installers": "^1.9",
"johnpbloch/wordpress": "@stable",
"wpscholar/phpdotenv": "^1.0"
},
"require-dev": {
"wp-cli/wp-cli": "@stable",
"aaemnnosttv/wp-cli-dotenv-command": "@stable"
},
"extra": {
"wordpress-install-dir": "wp",
"installer-paths": {
"content/mu-plugins/{$name}": [
"type:wordpress-muplugin"
],
"content/plugins/{$name}": [
"type:wordpress-plugin"
],
"content/themes/{$name}": [
"type:wordpress-theme"
]
}
},
"scripts": {
"wp": "vendor/bin/wp",
"set-salts": "@wp dotenv salts regenerate",
"post-create-project-cmd": [
"@php -r \"copy('.env.example', '.env');\"",
"@php -r \"unlink('.env.example');\"",
"@composer run set-salts"
]
}
}