-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 965 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 965 Bytes
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
{
"name": "webdevstudios/wds-wp-rest-api-connect",
"description": "Helper class for connecting from one WordPress installation to another via the WordPress REST API and OAuth.",
"license": "GPL-2.0+",
"authors": [
{
"name": "WebDevStudios",
"email": "contact@webdevstudios.com",
"homepage": "https://github.com/WebDevStudios",
"role": "Developer"
}
],
"keywords": ["wordpress", "wp-api", "json" ],
"homepage": "https://github.com/WebDevStudios/WDS-WP-REST-API-Connect",
"support": {
"issues": "https://github.com/WebDevStudios/WDS-WP-REST-API-Connect/issues",
"source": "https://github.com/WebDevStudios/WDS-WP-REST-API-Connect"
},
"require": {
"php": ">5.3",
"league/oauth1-client": "^1.6"
},
"autoload": {
"psr-4": {
"WP_REST\\ExampleClient\\": "lib/"
},
"classmap": ["lib"]
}
}