-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
126 lines (126 loc) · 2.91 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "jeffstieler/utah-beer-finder-wp",
"description": "Find beer available in Utah",
"authors": [
{
"name": "Jeff Stieler",
"email": "[email protected]"
}
],
"type": "project",
"repositories": [
{
"type": "package",
"package": {
"name": "wordpress/wordpress",
"type": "webroot",
"version": "4.9.8",
"source": {
"type": "git",
"url": "https://github.com/WordPress/WordPress.git",
"reference": "4.9.8"
},
"require": {
"fancyguy/webroot-installer": "1.1.0"
}
}
},
{
"type": "package",
"package": {
"name": "jeffstieler/dt-woo-map",
"type": "wordpress-plugin",
"version": "master",
"source": {
"type": "git",
"url": "[email protected]:jeffstieler/dt-woo-map.git",
"reference": "master"
}
}
},
{
"type": "package",
"package": {
"name": "jeffstieler/search-filter-pro",
"type": "wordpress-plugin",
"version": "master",
"source": {
"type": "git",
"url": "[email protected]:jeffstieler/search-filter-pro.git",
"reference": "master"
}
}
},
{
"type": "package",
"package": {
"name": "jeffstieler/storefront-powerpack",
"type": "wordpress-plugin",
"version": "master",
"source": {
"type": "git",
"url": "[email protected]:jeffstieler/storefront-powerpack.git",
"reference": "master"
}
}
},
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"config": {
"preferred-install": "dist"
},
"scripts": {
"post-root-package-install": [
"php -r \"copy('.env.example', '.env');\""
],
"test": [
"phpcs"
]
},
"require": {
"php": ">=5.6",
"composer/installers": "^1.4",
"wordpress/wordpress": "4.9.8",
"vlucas/phpdotenv": "^2.0.1",
"wpackagist-plugin/memcached-redux": "~0.1.6",
"oscarotero/env": "^1.1.0",
"roots/wp-password-bcrypt": "1.0.0",
"wpackagist-plugin/woocommerce": "^3.4.0",
"wpackagist-theme/storefront": "2.3.4",
"wpackagist-plugin/custom-sidebars": "^3.1.2",
"wpackagist-plugin/rest-api-filter-fields": "^1.0.7",
"wpackagist-plugin/yith-woocommerce-catalog-mode": "^1.5.9",
"jeffstieler/dt-woo-map": "*",
"jeffstieler/search-filter-pro": "*",
"jeffstieler/storefront-powerpack": "*",
"wpackagist-plugin/add-search-to-menu": "3.4",
"wpackagist-plugin/jetpack": "^6.0",
"wpackagist-plugin/google-analytics-dashboard-for-wp": "^5.3.2",
"wpackagist-plugin/vaultpress": "dev-trunk"
},
"require-dev" : {
"squizlabs/php_codesniffer": "^3.0.2"
},
"extra": {
"installer-paths": {
"web/app/drop-ins/{$name}/": [
"wpackagist-plugin/memcached-redux"
],
"web/app/mu-plugins/{$name}/": [
"type:wordpress-muplugin"
],
"web/app/plugins/{$name}/": [
"type:wordpress-plugin"
],
"web/app/themes/{$name}/": [
"type:wordpress-theme"
]
},
"webroot-dir": "web/wp",
"webroot-package": "wordpress/wordpress"
},
"minimum-stability": "dev"
}