-
Notifications
You must be signed in to change notification settings - Fork 23
/
composer.json
35 lines (35 loc) · 940 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
{
"name": "firesphere/graphql-jwt",
"description": "JWT Authentication for GraphQL",
"type": "silverstripe-vendormodule",
"license": "GPL-3.0-or-later",
"require": {
"php": ">=7.1",
"silverstripe/framework": "^4.3",
"silverstripe/graphql": "^3.0",
"lcobucci/jwt": "^3.2",
"ext-json": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.4",
"phpunit/phpunit": "^5.7",
"scriptfusion/phpunit-immediate-exception-printer": "^1"
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
},
"installer-name": "graphql-jwt"
},
"config": {
"process-timeout": 600
},
"autoload": {
"psr-4": {
"Firesphere\\GraphQLJWT\\": "src/",
"Firesphere\\GraphQLJWT\\Tests\\": "tests/unit/"
}
},
"prefer-stable": true,
"minimum-stability": "dev"
}