forked from iamapinan/OAuth2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (35 loc) · 756 Bytes
/
composer.json
File metadata and controls
36 lines (35 loc) · 756 Bytes
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
{
"name": "drahak/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", "GPL-3.0"],
"authors": [
{
"name": "Drahomír Hanák",
"homepage": "http://www.drahak.eu"
}
],
"config": {
"vendor-dir": "libs"
},
"require": {
"php": ">= 5.3.0",
"nette/nette": "@dev"
},
"require-dev": {
"nette/tester": "dev-master",
"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"
]
}
}