-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
47 lines (47 loc) · 1.16 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
{
"name": "cloudbitsio/bracket",
"type": "project",
"license": "MIT",
"description": " WordPress development and production servers with Docker and project scaffolding",
"homepage": "https://cloudbits.io/open-source/",
"authors": [
{
"name": "Saddam Azad",
"email": "[email protected]",
"homepage": "https://github.com/saddam-azad"
}
],
"keywords": [
"bracket", "docker", "development", "wordpress", "wp", "wp-config"
],
"support": {
"issues": "https://github.com/cloudbitsio/bracket/issues"
},
"require": {
"composer/installers": "~1.0",
"roots/bedrock": ">1.15"
},
"require-dev": {},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"vendor-dir": "site/vendor/"
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-install": [
"php -r \"copy('.env.example', '.env');\""
],
"post-update-cmd": [
"composer install --working-dir site"
]
},
"extra": {
"installer-paths": {
"site/": ["roots/bedrock"],
"site/vendor/${name}": ["vendor/package"]
},
"wordpress-install-dir": "site/web/wp"
}
}