forked from phly/phly-expressive-oauth2clientauthentication
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
78 lines (78 loc) · 2.64 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
73
74
75
76
77
78
{
"name": "phly/phly-mezzio-oauth2clientauthentication",
"description": "league/oauth2-client adapter for mezzio/mezzio-authentication",
"license": "BSD-2-Clause",
"keywords": [
"authentication",
"oauth2",
"mezzio",
"psr-7",
"psr-15"
],
"support": {
"docs": "https://phly.github.io/phly-mezzio-oauth2clientauthentication/",
"issues": "https://github.com/phly/phly-mezzio-oauth2clientauthentication/issues",
"source": "https://github.com/phly/phly-mezzio-oauth2clientauthentication",
"rss": "https://github.com/phly/phly-mezzio-oauth2clientauthentication/releases.atom"
},
"require": {
"php": "^7.4 || ~8.0.0 || ~8.1.0",
"league/oauth2-client": "^2.2",
"mezzio/mezzio": "^3.0",
"mezzio/mezzio-authentication": "^1.0",
"mezzio/mezzio-session": "^1.0"
},
"require-dev": {
"laminas/laminas-coding-standard": "^2.3",
"league/oauth2-github": "^3.0",
"league/oauth2-google": "^4.0",
"league/oauth2-instagram": "^3.1.0",
"mezzio/mezzio-fastroute": "^3.0",
"mezzio/mezzio-template": "^2.0",
"phpspec/prophecy-phpunit": "^2.0",
"phpunit/phpunit": "^9.5.11"
},
"suggest": {
"league/oauth2-facebook": "To use the Facebook OAuth2 provider",
"league/oauth2-github": "To use the GitHub OAuth2 provider",
"league/oauth2-google": "To use the Google OAuth2 provider",
"league/oauth2-instagram": "To use the Instagram OAuth2 provider",
"league/oauth2-linkedin": "To use the LinkedIn OAuth2 provider",
"mezzio/mezzio-template": "To use the shipped UnauthorizedResponseFactory, which includes template support"
},
"autoload": {
"psr-4": {
"Phly\\Mezzio\\OAuth2ClientAuthentication\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhlyTest\\Mezzio\\OAuth2ClientAuthentication\\": "test/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev",
"dev-develop": "1.1.x-dev"
},
"zf": {
"config-provider": "Phly\\Mezzio\\OAuth2ClientAuthentication\\ConfigProvider"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
}
}