oauth2-server/composer.json

40 lines
644 B
JSON
Raw Normal View History

2012-07-05 22:08:58 +05:30
{
2012-07-23 19:11:15 +05:30
"name": "lncd/Oauth2",
2012-08-27 20:14:06 +05:30
"description": "OAuth 2.0 Framework",
"version": "0.2.3",
2012-07-23 18:52:05 +05:30
"homepage": "https://github.com/lncd/OAuth2",
2012-07-11 21:32:32 +05:30
"license": "MIT",
"require": {
2012-08-01 20:14:03 +05:30
"php": ">=5.3.0"
2012-08-01 20:11:41 +05:30
},
"require-dev": {
"phpunit/phpunit": "*"
2012-07-11 21:32:32 +05:30
},
"repositories": [
{
"type": "git",
2012-07-23 18:52:05 +05:30
"url": "https://github.com/lncd/OAuth2"
2012-07-11 21:32:32 +05:30
}
],
"keywords": [
"oauth",
"oauth2",
2012-08-27 20:14:06 +05:30
"server",
"authorization",
"authentication",
"resource"
2012-07-11 21:32:32 +05:30
],
"authors": [
{
"name": "Alex Bilbie",
"email": "oauth2@alexbilbie.com",
2012-07-11 21:32:32 +05:30
"homepage": "http://www.httpster.org",
"role": "Developer"
}
],
"autoload": {
"psr-0": {
2012-07-23 19:11:15 +05:30
"Oauth2": "src/"
2012-07-11 21:32:32 +05:30
}
}
2012-07-05 22:08:58 +05:30
}