-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
74 lines (74 loc) · 2.63 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
{
"name": "phly/phly-expressive-oauth2clientauthentication",
"description": "league/oauth2-client adapter for zendframework/zend-expressive-authentication",
"license": "BSD-2-Clause",
"keywords": [
"authentication",
"oauth2",
"expressive",
"psr-7",
"psr-15"
],
"support": {
"docs": "https://phly.github.io/phly-expressive-oauth2clientauthentication/",
"issues": "https://github.com/phly/phly-expressive-oauth2clientauthentication/issues",
"source": "https://github.com/phly/phly-expressive-oauth2clientauthentication",
"rss": "https://github.com/phly/phly-expressive-oauth2clientauthentication/releases.atom"
},
"require": {
"php": "^7.1",
"league/oauth2-client": "^2.2",
"zendframework/zend-expressive": "^3.0",
"zendframework/zend-expressive-authentication": "^1.0",
"zendframework/zend-expressive-session": "^1.0"
},
"require-dev": {
"league/oauth2-github": "^2.0",
"league/oauth2-google": "^2.0",
"league/oauth2-instagram": "^2.0",
"phpunit/phpunit": "^7.0.2",
"zendframework/zend-coding-standard": "~1.0.0",
"zendframework/zend-expressive-fastroute": "^3.0",
"zendframework/zend-expressive-template": "^2.0"
},
"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",
"zendframework/zend-expressive-template": "To use the shipped UnauthorizedResponseFactory, which includes template support"
},
"autoload": {
"psr-4": {
"Phly\\Expressive\\OAuth2ClientAuthentication\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhlyTest\\Expressive\\OAuth2ClientAuthentication\\": "test/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev",
"dev-develop": "1.1.x-dev"
},
"zf": {
"config-provider": "Phly\\Expressive\\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"
}
}