-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
96 lines (96 loc) · 2.49 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "cdk/div",
"type": "project",
"license": "MIT",
"description": "WordPress boilerplate with modern development tools, easier configuration, and an improved folder structure, fork from BEDROCK",
"homepage": "http://cdk.co.il/",
"authors": [
{
"name": "Dima Minka",
"email": "[email protected]",
"homepage": "https://github.com/dimaminka"
}
],
"keywords": [
"bedrock", "roots", "wordpress", "stack", "composer", "vagrant", "wp", "custom", "cdk", "divi"
],
"support": {
"issues": "https://github.com/cdk-comp/div/issues",
"forum": "https://github.com/cdk-comp/div/issues"
},
"config": {
"preferred-install": "dist"
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
},
{
"type": "package",
"package": {
"name": "wp-premium/divi",
"type": "wordpress-theme",
"version": "3.2.2",
"dist": {
"type": "zip",
"url": "https://github.com/wp-premium-themes/Divi/archive/v3.2.2.zip"
},
"require" : {
"composer/installers": "~1.0"
}
}
},
{
"type": "package",
"package": {
"name": "wp-premium/wp-rocket",
"type": "wordpress-plugin",
"version": "3.0.4",
"dist": {
"type": "zip",
"url": "https://github.com/wp-premium-themes/wp-rocket/archive/v3.0.4.zip"
},
"require" : {
"composer/installers": "~1.0"
}
}
}
],
"require": {
"php": ">=5.6",
"composer/installers": "~1.0.12",
"vlucas/phpdotenv": "^2.0.1",
"johnpbloch/wordpress": "4.9.*",
"oscarotero/env": "^1.0",
"roots/wp-password-bcrypt": "1.0.0",
"wpackagist-plugin/duplicate-post": "*",
"wpackagist-plugin/limit-login-attempts": "*",
"wpackagist-plugin/redirection": "*",
"wpackagist-plugin/wordpress-seo": "*",
"wp-premium/divi": "*",
"wp-premium/wp-rocket": "*"
},
"require-dev": {
"squizlabs/php_codesniffer": "^2.5.1"
},
"extra": {
"installer-paths": {
"wp/wp-content/mu-plugins/{$name}/": ["type:wordpress-muplugin"],
"wp/wp-content/plugins/{$name}/": ["type:wordpress-plugin"],
"wp/wp-content/themes/{$name}/": ["type:wordpress-theme"]
},
"wordpress-install-dir": "wp-tmp"
},
"scripts": {
"test": [
"vendor/bin/phpcs"
],
"post-install-cmd": [
"bash post-install.sh"
],
"post-update-cmd": [
"bash post-update.sh"
]
}
}