forked from iamapinan/OAuth2
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
43 lines (42 loc) · 944 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
38
39
40
41
42
43
{
"name": "vymak/oauth2",
"type": "library",
"description": "Nette OAuth2 Provider bundle",
"keywords": ["nette", "OAuth2", "provider", "server", "drahak"],
"homepage": "http://www.drahak.eu",
"license": ["BSD-3-Clause", "GPL-2.0-only", "GPL-3.0-only"],
"authors": [
{
"name": "Drahomír Hanák",
"homepage": "http://www.drahak.eu"
}
],
"config": {
"vendor-dir": "libs"
},
"require": {
"php": ">= 5.6.0",
"nette/application": "^2.4",
"nette/bootstrap": "^2.4",
"nette/di": "^2.4",
"nette/http": "^2.4",
"nette/security": "^2.4",
"nette/utils": "^2.4"
},
"require-dev": {
"nette/tester": "~2.0",
"dibi/dibi": "^3.0",
"nette/database": "^2.4",
"janmarek/mockista": "dev-master"
},
"autoload": {
"psr-0": {
"Drahak\\OAuth2": "src/"
},
"classmap": [
"src/Drahak/OAuth2/exceptions.php",
"src/Drahak/OAuth2/Grant/exceptions.php",
"src/Drahak/OAuth2/Storage/exceptions.php"
]
}
}