-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
52 lines (52 loc) · 1.7 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
{
"name": "mouf/oauth2-server",
"description": "This package is a full-stack implementation of a OAuth2 server for Mouf framework based on phpleague/oauth2-server package.",
"type": "mouf-library",
"keywords": ["oauth", "oauth2", "mouf"],
"homepage": "http://mouf-php.com/packages/mouf/oauth2-server",
"license": "MIT",
"authors": [
{
"name": "David Négrier",
"email": "[email protected]",
"homepage": "http://mouf-php.com"
},
{
"name": "Romain Marrot",
"email": "[email protected]",
"homepage": "http://mouf-php.com"
}
],
"support": {
"issues": "https://github.com/thecodingmachine/oauth2-server/issues"
},
"autoload": {
"psr-0": {"Mouf": "src/"},
"files" : []
},
"require": {
"mouf/mouf": "~2.0",
"mouf/mvc.splash": "~8.0",
"mouf/mvc.splash-common": "~8.0",
"mouf/security.rightsservice-splash": "~8.0",
"mouf/security.userservice-splash": "~8.0",
"mouf/security.userservice": "~2.1",
"mouf/utils.session.session-manager": "~2.0 || ~3.0",
"mouf/security.simplelogincontroller": "~5.0",
"mouf/security.userservice.extensions": "~1.0",
"mouf/database.doctrine-orm-wrapper": "^2.0",
"league/oauth2-server": "~4.1.5",
"symfony/psr-http-message-bridge": "~1.0.0"
},
"extra" : {
"mouf" : {
"install" : [{
"type" : "class",
"class" : "Mouf\\OAuthServer\\OAuthServerInstaller"
}
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}