forked from Tmeister/wp-api-jwt-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 787 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 787 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
30
{
"name": "codelight-eu/wp-api-jwt-auth",
"description": "A simple plugin to add JSON Web Token (JWT) Authentication to WP REST API.",
"homepage": "https://github.com/codelight-eu/wp-api-jwt-auth",
"type": "wordpress-plugin",
"license": "GPL-2.0+",
"authors": [
{
"name": "Enrique Chavez",
"homepage": "https://enriquechavez.co"
}
],
"support": {
"issues": "https://github.com/Tmeister/wp-api-jwt-auth/issues",
"source": "https://github.com/Tmeister/wp-api-jwt-auth/"
},
"require": {
"php": ">=5.3",
"composer/installers": "~1.0",
"firebase/php-jwt": "^6.11"
},
"require-dev": {
"guzzlehttp/guzzle": "^6.1"
},
"config": {
"allow-plugins": {
"composer/installers": true
}
}
}