-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·55 lines (54 loc) · 1.27 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": "ottercrew/wordpress-workflow",
"type": "project",
"license": "MIT",
"description": "A modern WordPress Workflow",
"homepage": "https://www.ottercrew.com/wordpress-workflow",
"authors": [
{
"name": "Agli Panci",
"email": "[email protected]",
"homepage": "https://github.com/aglipanci"
}
],
"keywords": [
"wordpress",
"workflow",
"composer",
"wp"
],
"config": {
"preferred-install": "dist"
},
"repositories": [
{
"type": "composer",
"url": "http://wpackagist.org"
}
],
"require": {
"php": ">=5.5",
"composer/installers": "~1.0.12",
"vlucas/phpdotenv": "^2.0.1",
"johnpbloch/wordpress": "4.4.1",
"wp-cli/wp-cli": "dev-master",
"wpackagist-plugin/regenerate-thumbnails": "*",
"wpackagist-plugin/monkeyman-rewrite-analyzer": "*",
"wpackagist-plugin/debug-bar": "*",
"wpackagist-plugin/query-monitor": "*"
},
"extra": {
"installer-paths": {
"public/content/mu-plugins/{$name}/": [
"type:wordpress-muplugin"
],
"public/content/plugins/{$name}/": [
"type:wordpress-plugin"
],
"public/content/themes/{$name}/": [
"type:wordpress-theme"
]
},
"wordpress-install-dir": "public/wordpress"
}
}