-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
52 lines (51 loc) · 1.61 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
{
"repositories":[
{
"type":"composer",
"url":"https://wpackagist.org"
}
],
"require": {
"johnpbloch/wordpress": "5.1.*",
"twbs/bootstrap": "3.3.7",
"wp-bootstrap/wp-bootstrap-navwalker" : "2.0.5",
"cwspear/bootstrap-hover-dropdown" : "2.2.1",
"phpmailer/phpmailer" : "6.1.6",
"fortawesome/font-awesome" : "4.7.*",
"nicolasbize/magicsuggest" : "2.1.4",
"google/recaptcha" : "1.1.3",
"eternicode/bootstrap-datepicker" : "1.7.1",
"nostalgiaz/bootstrap-switch" : "3.3.4",
"wpackagist-plugin/rest-api-oauth1":"0.3.*",
"wpackagist-plugin/google-analytics-for-wordpress":"6.2.2",
"wpackagist-plugin/wp-mail-smtp" : "0.10.1",
"wpackagist-plugin/jetpack": "^5.3",
"wpackagist-plugin/social-metrics-tracker": "1.6.*",
"wpackagist-plugin/akismet": "4.0",
"fabianobn/slick": "v1.8.*",
"wpackagist-plugin/tainacan": "*"
},
"require-dev": {
"phpunit/phpunit": "5.*",
"symfony/var-dumper": "3.4.15",
"spatie/phpunit-watcher": "^1.8"
},
"extra": {
"wordpress-install-dir": "public/wp",
"installer-paths": {
"public/wp-content/plugins/{$name}/": ["type:wordpress-plugin"]
}
},
"scripts": {
"post-install-cmd": "bash post-install.sh",
"post-update-cmd": "bash post-install.sh"
},
"autoload-dev": {
"psr-4": {
"Symfony\\Component\\VarDumper\\": "vendor/"
}
},
"autoload": {
"psr-4": { "": "vendor;" }
}
}