-
-
Notifications
You must be signed in to change notification settings - Fork 161
/
composer.json
34 lines (34 loc) · 957 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
{
"name": "tmeister/wp-api-jwt-auth",
"description": "A simple plugin to add JSON Web Token (JWT) Authentication to WP REST API.",
"homepage": "https://github.com/Tmeister/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/"
},
"config": {
"vendor-dir": "includes/vendor",
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"php": ">=7.4",
"composer/installers": "~1.0",
"firebase/php-jwt": "^6.3"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "*",
"squizlabs/php_codesniffer": "3.*",
"wp-coding-standards/wpcs": "*"
}
}