-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
37 lines (37 loc) · 897 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
31
32
33
34
35
36
37
{
"name": "drsdre/yii2-wordpress-api",
"description": "Yii2 Extension to connect with a Wordpress Rest API using oAuth or basic authentication",
"keywords": [
"yii2",
"extension",
"rest",
"API",
"oAuth",
"Wordpress",
"cms"
],
"homepage": "https://github.com/drsdre/yii2-wordpress-api",
"type": "yii2-extension",
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/drsdre/yii2-wordpress-api/issues?state=open",
"source": "https://github.com/drsdre/yii2-wordpress-api",
"docs": "http://v2.wp-api.org/"
},
"authors": [
{
"name": "Andre Schuurman",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.0",
"yiisoft/yii2": "~2.0.14",
"yiisoft/yii2-authclient": "~2.1.3"
},
"autoload": {
"psr-4": {
"drsdre\\WordpressApi\\": ""
}
}
}