-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
136 lines (136 loc) · 5.39 KB
/
composer.json
File metadata and controls
136 lines (136 loc) · 5.39 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "oauth2-framework/oauth2-framework",
"type": "library",
"description": "The OAuth2 Framework",
"license": "MIT",
"keywords": ["RFC6749", "oauth2", "framework", "authorization", "server", "library", "openid", "openid connect", "oidc"],
"homepage": "https://oauth2-framework.spomky-labs.com/",
"authors": [
{
"name": "Florent Morselli",
"homepage": "https://github.com/Spomky"
},
{
"name": "All contributors",
"homepage": "https://github.com/OAuth2-Framework/oauth2-framework/contributors"
}
],
"require": {
"php": "^7.4|^8.0",
"ext-json": "*",
"ext-openssl": "*",
"beberlei/assert": "^3.2",
"doctrine/common": "^2.8|^3.0",
"league/uri": "^5.3",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"sensio/framework-extra-bundle": "^5.0 || ^6.0",
"spomky-labs/base64url": "^2.0",
"symfony/config": "^5.0",
"symfony/dependency-injection": "^5.0",
"symfony/http-kernel": "^5.0",
"symfony/psr-http-message-bridge": "^1.0|^2.0",
"symfony/routing": "^5.0",
"symfony/security-bundle": "^5.0",
"thecodingmachine/safe": "^1.0",
"web-token/jwt-bundle": "^2.0",
"web-token/jwt-checker": "^2.0",
"web-token/jwt-core": "^2.0",
"web-token/jwt-signature": "^2.0"
},
"require-dev": {
"doctrine/dbal": "^2.9",
"doctrine/doctrine-bundle": "^2.0",
"doctrine/orm": "^2.6",
"nyholm/psr7": "^1.0",
"php-http/mock-client": "^1.1",
"phpspec/prophecy-phpunit": "^2.0",
"phpunit/phpcov": "^8.0",
"phpunit/phpunit": "^9.0",
"rector/rector": "^0.9.3",
"symfony/browser-kit": "^5.0",
"symfony/dom-crawler": "^5.0",
"symfony/expression-language": "^5.0",
"symfony/panther": "^0.8",
"symfony/phpunit-bridge": "^5.0",
"symfony/templating": "^5.0",
"symfony/twig-bundle": "^5.0",
"symfony/validator": "^5.0",
"symfony/var-dumper": "^5.0",
"symfony/yaml": "^5.0",
"web-token/jwt-encryption": "^2.0",
"web-token/jwt-encryption-algorithm-aescbc": "^2.0",
"web-token/jwt-encryption-algorithm-aesgcm": "^2.0",
"web-token/jwt-encryption-algorithm-aeskw": "^2.0",
"web-token/jwt-encryption-algorithm-rsa": "^2.0",
"web-token/jwt-key-mgmt": "^2.0",
"web-token/jwt-signature-algorithm-ecdsa": "^2.0",
"web-token/jwt-signature-algorithm-hmac": "^2.0",
"web-token/jwt-signature-algorithm-none": "^2.0",
"web-token/jwt-signature-algorithm-rsa": "^2.0",
"web-token/jwt-util-ecc": "^2.0"
},
"replace": {
"oauth2-framework/resource-server-authentication": "self.version",
"oauth2-framework/security-bundle": "self.version",
"oauth2-framework/authorization-server-bundle": "self.version",
"oauth2-framework/webfinger-bundle": "self.version",
"oauth2-framework/authorization-code-grant": "self.version",
"oauth2-framework/authorization-endpoint": "self.version",
"oauth2-framework/bearer-token-type": "self.version",
"oauth2-framework/client-authentication": "self.version",
"oauth2-framework/client-configuration-endpoint": "self.version",
"oauth2-framework/client-credentials-grant": "self.version",
"oauth2-framework/client-registration-endpoint": "self.version",
"oauth2-framework/client-rule": "self.version",
"oauth2-framework/core": "self.version",
"oauth2-framework/implicit-grant": "self.version",
"oauth2-framework/webfinger-endpoint": "self.version",
"oauth2-framework/jwt-bearer-grant": "self.version",
"oauth2-framework/mac-token-type": "self.version",
"oauth2-framework/metadata-endpoint": "self.version",
"oauth2-framework/none-grant": "self.version",
"oauth2-framework/openid-connect": "self.version",
"oauth2-framework/refresh-token-grant": "self.version",
"oauth2-framework/resource-owner-password-credentials-grant": "self.version",
"oauth2-framework/scope": "self.version",
"oauth2-framework/token-endpoint": "self.version",
"oauth2-framework/token-introspection-endpoint": "self.version",
"oauth2-framework/token-revocation-endpoint": "self.version"
},
"suggest": {
"php-http/client-implementation": "For Authorization Request and Sector Identifier Uri support."
},
"autoload": {
"psr-4": {
"OAuth2Framework\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"OAuth2Framework\\Tests\\": "tests/"
}
},
"scripts": {
"test": "./vendor/bin/phpunit"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
},
"phpstan": {
"includes": [
"phpstan/phpstan-strict-rules/rules.neon",
"phpstan/phpstan-phpunit/extension.neon",
"phpstan/phpstan-deprecation-rules/rules.neon",
"thecodingmachine/phpstan-safe-rule/phpstan-safe-rule.neon",
"phpstan/phpstan-beberlei-assert/extension.neon"
]
}
},
"config": {
"sort-packages": true
}
}