summaryrefslogtreecommitdiff
path: root/composer.json
blob: df74ea2a799708cdcd918f02eb651bcc8c3dcbfe (plain)
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
{
    "name": "bshaffer/oauth2-server-php",
    "description":"OAuth2 Server for PHP",
    "keywords":["oauth","oauth2","auth"],
    "type":"library",
    "license":"MIT",
    "authors":[
        {
            "name":"Brent Shaffer",
            "email": "bshafs@gmail.com",
            "homepage":"http://brentertainment.com"
        }
    ],
    "homepage": "http://github.com/bshaffer/oauth2-server-php",
    "require":{
        "php":">=5.3.9"
    },
    "autoload": {
        "psr-0": { "OAuth2": "src/" }
    },
    "suggest": {
        "predis/predis": "Required to use the Redis storage engine",
        "thobbs/phpcassa": "Required to use the Cassandra storage engine"
    }
}