This repository has been archived by the owner on Jun 27, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
99 lines (97 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
{
"name": "roots/bedrock",
"type": "project",
"license": "MIT",
"description": "WordPress boilerplate with modern development tools, easier configuration, and an improved folder structure",
"homepage": "https://roots.io/bedrock/",
"authors": [
{
"name": "Scott Walkinshaw",
"email": "scott.walkinshaw@gmail.com",
"homepage": "https://github.com/swalkinshaw"
},
{
"name": "Ben Word",
"email": "ben@benword.com",
"homepage": "https://github.com/retlehs"
}
],
"keywords": [
"bedrock", "roots", "wordpress", "stack", "composer", "vagrant", "wp"
],
"support": {
"issues": "https://github.com/roots/bedrock/issues",
"forum": "https://discourse.roots.io/category/bedrock"
},
"config": {
"preferred-install": "dist",
"platform": {
"php": "5.4.45"
}
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
},
{
"type": "vcs",
"url": "https://github.com/outlandishideas/oowp.git"
},
{
"type": "vcs",
"url": "https://github.com/outlandishideas/routemaster.git"
}
],
"require": {
"php": ">=5.4",
"composer/installers": "~1.0.12",
"vlucas/phpdotenv": "^2.0.1",
"johnpbloch/wordpress": "4.9.8",
"oscarotero/env": "^1.0",
"wpackagist-plugin/advanced-custom-fields": "5.7.7",
"wpackagist-plugin/custom-post-type-ui": "1.6.0",
"wpackagist-plugin/posts-to-posts": "1.6.5",
"wpackagist-plugin/wordpress-importer": "0.6.4",
"wpackagist-plugin/wp-fail2ban": "3.6.0",
"wpackagist-plugin/wp-piwik": "1.0.19",
"wpackagist-plugin/contact-form-7": "5.0.5",
"wpackagist-plugin/database-sync": "^0.5.1",
"wpackagist-plugin/flamingo": "1.9",
"wpackagist-plugin/contact-form-7-recaptcha": "1.2.0",
"wpackagist-plugin/acf-to-rest-api": "3.1.0",
"wpackagist-plugin/email-subscribers": "3.5.15",
"outlandish/oowp": "0.9.1",
"outlandish/routemaster": "dev-wp-json-fix",
"wp-sync-db/wp-sync-db-media-files": "^1.1"
},
"require-dev": {
"squizlabs/php_codesniffer": "^2.5.1",
"phpmd/phpmd": "^2.4.2",
"phpunit/phpunit": "^4.8",
"mockery/mockery": "^0.9.5",
"behat/behat": "^3.2",
"behat/mink": "^1.7",
"behat/mink-extension": "^2.2",
"behat/mink-selenium2-driver": "^1.3"
},
"autoload": {
"psr-4": {
"Outlandish\\MappingCoTech\\": "web/app/themes/coop-tech-oowp-theme/src/"
}
},
"extra": {
"installer-paths": {
"web/app/mu-plugins/{$name}/": ["type:wordpress-muplugin"],
"web/app/plugins/{$name}/": ["type:wordpress-plugin"],
"web/app/themes/{$name}/": ["type:wordpress-theme"]
},
"wordpress-install-dir": "web/wp"
},
"scripts": {
"test": [
"vendor/bin/phpcs web/app/themes/coop-tech-oowp-theme/src",
"vendor/bin/phpmd web/app/themes/coop-tech-oowp-theme/src text cleancode,codesize,controversial,design,naming,unusedcode"
]
}
}