-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 965 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
38
39
40
41
42
{
"config": {
"secure-http": false
},
"name": "benjaminmedia/wp-cl-oauth",
"description": "Log in users from the WA platform",
"type": "wordpress-plugin",
"keywords": ["wordpress", "plugin"],
"homepage": "https://github.com/BenjaminMedia/wp-cl-oauth",
"repositories":[
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"authors": [
{
"name": "Bonnier Publications",
"email": "[email protected]",
"homepage": "http://bonnierpublications.com"
},
{
"name": "Alf Henderson",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/BenjaminMedia/wp-cl-oauth/issues",
"source": "https://github.com/BenjaminMedia/wp-cl-oauth"
},
"autoload": {
"psr-4": {
"Bonnier\\WP\\OAuth\\": "src/"
}
},
"require": {
"php": ">=5.6",
"ext-json": "*",
"ext-zlib": "*",
"league/oauth2-client": "^2.2"
}
}