-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 1022 Bytes
/
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
{
"name": "oro/oauth2-server",
"description": "Oro OAuth 2.0 authorization and resource server for BAP",
"type": "symfony-bundle",
"keywords": ["ORO", "OAuth", "OAuth2"],
"homepage": "https://github.com/oroinc/oauth2-server",
"license": "MIT",
"authors": [
{
"name": "Oro, Inc",
"homepage": "https://oroinc.com"
}
],
"autoload": {
"psr-4": {"Oro\\Bundle\\OAuth2ServerBundle\\": "src/Oro/Bundle/OAuth2ServerBundle"},
"exclude-from-classmap": ["/Tests/"]
},
"require": {
"ext-sodium": "*",
"oro/platform": "6.1.*",
"league/oauth2-server": "~8.5.3",
"symfony/psr-http-message-bridge": "~2.1.1"
},
"repositories": {
"oro": {
"type": "composer",
"url": "https://packagist.oroinc.com"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "6.1-dev"
}
}
}