-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.41 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
{
"name": "apollo",
"type": "project",
"license": "MIT",
"description": "A WordPress theme bundle.",
"homepage": "https://github.com/t-minus-ten/apollo",
"authors": [
{
"name": "Shaun M. Baer",
"email": "shaun.baer@gmail.com",
"homepage": "https://github.com/iamhexcoder"
},
{
"name": "Daniel Olson",
"email": "emaildano@gmail.com",
"homepage": "https://github.com/emaildano"
}
],
"keywords": [
"wordpress", "stack", "composer", "theme", "wp"
],
"support": {
"issues": "https://github.com/t-minus-ten/apollo/issues"
},
"config": {
"preferred-install": "dist",
"vendor-dir": "lib/vendor/"
},
"scripts": {
"pre-update-cmd": [
"php -r \"if(!file_exists('wp-config.php')) { copy('lib/config/wp-config-sample.php', 'wp-config.php'); }\"",
"php -r \"copy('lib/config/salts-example.php', 'salts.php');\"",
"curl https://api.wordpress.org/secret-key/1.1/salt >> salts.php"
]
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"require": {
"php": ">=7.2",
"johnpbloch/wordpress": "^5.4",
"composer/installers": "1.9.0"
},
"extra": {
"installer-paths": {
"app/mu-plugins/{$name}/": ["type:wordpress-muplugin"],
"app/plugins/{$name}/": ["type:wordpress-plugin"],
"./": ["type:wordpress-theme"]
},
"wordpress-install-dir": "wp"
}
}