-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
72 lines (72 loc) · 2.01 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
68
69
70
71
72
{
"name": "ronvanderheijden/openid-connect",
"type": "library",
"description": "OpenID Connect support to the PHP League's OAuth2 Server. Compatible with Laravel Passport.",
"license": "MIT",
"homepage": "https://github.com/ronvanderheijden/openid-connect",
"authors": [
{
"name": "Ron van der Heijden",
"email": "[email protected]"
}
],
"keywords": [
"openid",
"openid-connect",
"oidc",
"oauth2",
"laravel",
"passport"
],
"require": {
"php": "^7.4|^8.0",
"lcobucci/jwt": "^4.0",
"league/oauth2-server": "^8.2.0"
},
"require-dev": {
"guzzlehttp/psr7": "^1.7",
"http-interop/http-factory-guzzle": "^1.0",
"overtrue/phplint": "^2.3",
"phpunit/phpunit": "^9.4.2",
"slevomat/coding-standard": "^6.4.1",
"slim/slim": "4.*",
"symplify/easy-coding-standard": "^9.2",
"league/oauth2-client": "^2.6"
},
"autoload": {
"psr-4": {
"OpenIDConnect\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"OpenIDConnect\\Example\\": "example/",
"OpenIDConnect\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"dev": "vendor/bin/phpunit --group dev",
"ecs-check": "vendor/bin/ecs check",
"ecs-fix": "vendor/bin/ecs check --fix",
"lint": "vendor/bin/phplint --exclude=vendor .",
"fix": [
"composer update",
"composer ecs-fix",
"composer check"
],
"check": [
"composer lint",
"composer ecs-check",
"composer test",
"composer check-platform-reqs",
"composer outdated --direct --no-ansi",
"composer outdated --minor-only --strict --direct"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}