forked from nueko/phalcon-oauth2-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 920 Bytes
/
composer.json
File metadata and controls
48 lines (48 loc) · 920 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
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "bongrun/phalcon-oauth2-server",
"type": "library",
"description": "Phalcon wrapper for league/oauth2-server",
"keywords": [
"framework",
"phalcon",
"oauth",
"oauth2",
"authorization",
"micro",
"authentication",
"resource",
"api",
"auth",
"protect",
"secure"
],
"homepage": "https://github.com/bongrun/phalcon-oauth2-server",
"license": "MIT",
"authors": [
{
"name": "Eko Eryanto",
"email": "sumeko@live.com"
},
{
"name": "Torgny Bjers",
"email": "torgny@xorcode.com"
},
{
"name": "Vlad Pasechnik",
"email": "jump.e.r@yandex.ru"
}
],
"require": {
"php": ">=5.6.0",
"ext-phalcon": "~3.0",
"league/oauth2-server": "~4.1"
},
"autoload": {
"psr-4": {
"Phalcon\\OAuth2\\Server\\": "src"
}
},
"require-dev": {
"codeception/codeception": "~2.0"
}
}