forked from jasongrimes/silex-oauth2-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
32 lines (32 loc) · 823 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
{
"name": "jasongrimes/silex-oauth2-server",
"description": "A Silex service provider for implementing an OAuth 2 server, using the league/oauth2-server library.",
"license": "MIT",
"repositories": [
{
"type": "git",
"url": "https://github.com/jasongrimes/silex-oauth2-server"
}
],
"require": {
"php": ">=5.3.0",
"league/oauth2-server": "2.*"
},
"require-dev": {
"phpunit/phpunit": "*",
"phpunit/dbunit": ">=1.2"
},
"authors": [
{
"name": "Jason Grimes",
"email": "[email protected]",
"homepage": "http://www.jasongrimes.org",
"role": "Developer"
}
],
"autoload": {
"psr-0": {
"OAuth2Server": "src/"
}
}
}