-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathcomposer.json
37 lines (37 loc) · 1.06 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
{
"name": "10up/wp-content-connect",
"description": "WordPress library that enables direct relationships for posts to posts and posts to users.",
"type": "library",
"homepage": "https://github.com/10up/wp-content-connect",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "10up",
"email": "[email protected]",
"homepage": "https://10up.com",
"role": "developer"
},
{
"name": "Chris Marslender",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"composer/installers": "^1.2"
},
"autoload": {
"psr-4": {
"TenUp\\ContentConnect\\": "includes",
"TenUp\\ContentConnect\\Tests\\Integration\\": "tests/integration",
"TenUp\\ContentConnect\\Tests\\Unit\\": "tests/unit"
},
"files": [
"includes/Helpers.php"
]
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"10up/wp_mock": "0.2.0"
}
}