-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.37 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.37 KB
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
{
"name": "ci2018",
"license": "MIT",
"description": "Composer packages for CI2018",
"homepage": "https://www.cmoa.org",
"authors": [
{
"name": "Carney Dev Team",
"email": "dev.team@carney.co",
"homepage": "https://carney.co"
},
{
"name": "Carnegie Museum of Art",
"email": "info@cmoa.org",
"homepage": "http://github.com/cmoa"
}
],
"keywords": [
"wordpress"
],
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
},
{
"type": "vcs",
"url": "https://github.com/cmoa/wp-static-data"
}
],
"extra": {
"installer-paths": {
"../../../wp-content/plugins/{$name}/": [
"type:wordpress-plugin"
]
}
},
"require": {
"roots/wp-password-bcrypt": "^1.0.0",
"cmoa/wp-static-data": "^1.0.0",
"wpackagist-plugin/cms-tree-page-view": "1.3.4",
"wpackagist-plugin/elasticpress": "^2.5",
"wpackagist-plugin/siteimprove": "^1.0",
"wpackagist-plugin/user-switching": "^1.3",
"wpackagist-plugin/members": "^2.1",
"wpackagist-plugin/wordpress-importer": "^0.6.4"
},
"scripts": {
"post-install-cmd": [
"mkdir -p ../../../wp-content/plugins",
"cp -R plugins/* ../../../wp-content/plugins"
],
"post-autoload-dump": [
"mkdir -p ../../../vendor",
"cp -R vendor/* ../../../vendor"
]
}
}