forked from jamesedmonston/graphql-authentication
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
67 lines (67 loc) · 1.9 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "jamesedmonston/graphql-authentication",
"description": "GraphQL authentication for your headless Craft CMS applications.",
"type": "craft-plugin",
"version": "2.4.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"graphql",
"authentication",
"graphql-authentication"
],
"support": {
"docs": "https://github.com/jamesedmonston/graphql-authentication/blob/master/README.md",
"issues": "https://github.com/jamesedmonston/graphql-authentication/issues"
},
"license": "MIT",
"authors": [
{
"name": "James Edmonston",
"homepage": "https://jamesedmonston.co.uk"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.0.2",
"abraham/twitteroauth": "^3.1",
"craftcms/cms": "^4.0.0-alpha.1",
"google/apiclient": "^2.10",
"lcobucci/jwt": "^4.1",
"league/oauth2-facebook": "^2.0",
"thenetworg/oauth2-azure": "^2.1"
},
"require-dev": {
"craftcms/ecs": "dev-main",
"craftcms/phpstan": "dev-main",
"craftcms/rector": "dev-main"
},
"autoload": {
"psr-4": {
"jamesedmonston\\graphqlauthentication\\": "src/"
}
},
"extra": {
"name": "GraphQL Authentication",
"handle": "graphql-authentication",
"developer": "James Edmonston",
"developerUrl": "https://github.com/jamesedmonston",
"documentationUrl": "https://github.com/jamesedmonston/graphql-authentication/blob/master/README.md",
"changelogUrl": "https://raw.githubusercontent.com/jamesedmonston/graphql-authentication/master/CHANGELOG.md",
"class": "jamesedmonston\\graphqlauthentication\\GraphqlAuthentication"
},
"scripts": {
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --ansi --fix",
"phpstan": "phpstan --memory-limit=1G"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}