-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
78 lines (78 loc) · 2.24 KB
/
composer.json
File metadata and controls
78 lines (78 loc) · 2.24 KB
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
78
{
"name": "asmbs/thunderpress",
"type": "project",
"license": "MIT",
"description": "Slim WordPress stack inspired by Bedrock",
"homepage": "https://github.com/asmbs/thunderpress",
"authors": [
{
"name": "Kyle Tucker",
"email": "kyleatucker@gmail.com",
"homepage": "https://github.com/friartuck6000"
},
{
"name": "James Osterhout",
"email": "jrosterhout@gmail.com",
"homepage": "https://github.com/jamost"
}
],
"keywords": [ "wordpress", "composer", "mina" ],
"support": {
"issues": "https://github.com/asmbs/thunderpress/issues"
},
"autoload": {
"psr-4": {
"ASMBS\\": "scripts/ASMBS/"
}
},
"scripts": {
"salts": [
"ASMBS\\Thunderpress\\ScriptHandler::addSalts"
],
"post-install-cmd": [
"ASMBS\\Thunderpress\\ScriptHandler::addSalts"
],
"post-update-cmd": [
"ASMBS\\Thunderpress\\ScriptHandler::addSalts"
]
},
"repositories": [
{
"type": "composer",
"url": "http://wpackagist.org"
}
],
"require": {
"php": ">=5.4",
"johnpbloch/wordpress": "^4.4",
"composer/installers": "^1.0",
"vlucas/phpdotenv": "^2.2",
"asmbs/wp-ip": "^1.0",
"asmbs/wp-unblog": "^1.1",
"friartuck6000/wp-parsedown": "^1.0",
"wpackagist-plugin/wordpress-https": "^3.3",
"wpackagist-plugin/wp-mail-smtp": "^0.9",
"wpackagist-plugin/members": "^1.1"
},
"require-dev": {
"composer/composer": "^1.0@beta"
},
"extra": {
"installer-paths": {
"web/app/mu-plugins/{$name}/": [
"type:wordpress-muplugin",
"friartuck6000/wp-parsedown",
"wpackagist-plugin/wp-mail-smtp"
],
"web/app/plugins/{$name}/": [ "type:wordpress-plugin" ],
"web/app/themes/{$name}/": [ "type:wordpress-theme" ]
},
"wordpress-install-dir": "web/wp",
"dotenv": {
"file": ".env",
"dist-file": ".env.dist"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}