-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 1.54 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
{
"name": "mesh-research/cc-client",
"description": "WordPress plugin for connecting to CommonsConnect server and the Knowledge Commons network.",
"type": "wordpress-plugin",
"license": "MIT",
"authors": [
{
"name": "Mike Thicke",
"email": "[email protected]"
},
{
"name": "Grant Eben",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org",
"only": [
"wpackagist-plugin/*",
"wpackagist-theme/*"
]
}
],
"autoload": {
"psr-4": {
"MeshResearch\\CCClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MeshResearch\\CCClient\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^9",
"yoast/phpunit-polyfills": "^2.0",
"wpackagist-plugin/buddypress": "^12.4",
"wpackagist-plugin/bbpress": "^2.6"
},
"scripts": {
"phpunit": "phpunit"
},
"require": {
"guzzlehttp/guzzle": "^7.0"
},
"config": {
"allow-plugins": {
"composer/installers": true
}
},
"extra": {
"installer-paths": {
".lando/wordpress/wp-content/plugins/{$name}/": [
"type:wordpress-plugin"
],
".lando/wordpress/wp-content/themes/{$name}/": [
"type:wordpress-theme"
]
}
}
}