-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
121 lines (121 loc) · 4.84 KB
/
composer.json
File metadata and controls
121 lines (121 loc) · 4.84 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
{
"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": "^8.1",
"ext-json": "*",
"ext-openssl": "*",
"beberlei/assert": "^3.2",
"doctrine/common": "^3.0",
"league/uri": "^6.0",
"league/uri-components": "^2.4",
"nyholm/psr7": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"spomky-labs/base64url": "^2.0",
"symfony/config": "^5.4|^6.0",
"symfony/dependency-injection": "^5.4|^6.0",
"symfony/http-client": "^5.4|^6.0",
"symfony/http-kernel": "^5.4|^6.0",
"symfony/psr-http-message-bridge": "^2.0",
"symfony/routing": "^5.4|^6.0",
"symfony/security-bundle": "^5.4|^6.0",
"web-token/jwt-bundle": "^3.0",
"web-token/jwt-checker": "^3.0",
"web-token/jwt-core": "^3.0",
"web-token/jwt-signature": "^3.0"
},
"require-dev": {
"dms/phpunit-arraysubset-asserts": "^0.3.1",
"doctrine/dbal": "^2.9",
"doctrine/doctrine-bundle": "^2.0",
"doctrine/orm": "^2.6",
"ekino/phpstan-banned-code": "^1.0",
"infection/infection": "^0.26",
"php-http/mock-client": "^1.1",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-beberlei-assert": "^1.0",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-strict-rules": "^1.0",
"phpunit/phpcov": "^8.0",
"phpunit/phpunit": "^9.0",
"rector/rector": "^0.12",
"symfony/browser-kit": "^5.4|^6.0",
"symfony/dom-crawler": "^5.4|^6.0",
"symfony/expression-language": "^5.4|^6.0",
"symfony/phpunit-bridge": "^5.4|^6.0",
"symfony/templating": "^5.4|^6.0",
"symfony/twig-bundle": "^5.4|^6.0",
"symfony/validator": "^5.4|^6.0",
"symfony/var-dumper": "^5.4|^6.0",
"symfony/yaml": "^5.4|^6.0",
"symplify/easy-coding-standard": "^10.0 || ^11.0",
"web-token/encryption-pack": "^3.0",
"web-token/jwt-encryption": "^3.0",
"web-token/jwt-key-mgmt": "^3.0",
"web-token/jwt-util-ecc": "^3.0",
"web-token/signature-pack": "^3.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/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"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"OAuth2Framework\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"OAuth2Framework\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true,
"infection/extension-installer": true
}
}
}