forked from 10up/wp-content-connect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
30 lines (30 loc) · 811 Bytes
/
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
{
"name": "10up/wp-content-connect",
"description": "Post to Post and Post to User Library for WordPress",
"type": "library",
"license": "GPL-3.0-or-later",
"authors": [
{
"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"
}
}