oauth2-server/composer.json

34 lines
779 B
JSON
Raw Normal View History

2012-07-05 22:08:58 +05:30
{
"name": "lncd/oauth2server",
2012-07-11 20:57:10 +05:30
"description": "OAuth 2.0 server - UNDER DEVELOPMENT - NOT READY FOR PRIMETIME",
2012-07-05 22:08:58 +05:30
"version": "0.0.1",
2012-07-09 21:18:26 +05:30
"homepage": "https://github.com/lncd/oauth2server",
"license": "MIT",
2012-07-05 22:08:58 +05:30
"require": {
2012-07-11 20:48:50 +05:30
"php": ">=5.3.0"
2012-07-05 22:08:58 +05:30
},
"repositories": [
{
"type": "git",
"url": "https://github.com/lncd/oauth2server"
}
],
"keywords": [
"oauth",
"oauth2",
"server"
],
"authors": [
{
"name": "Alex Bilbie",
"email": "php-oauth2-server@alexbilbie.com",
"homepage": "http://www.httpster.org",
"role": "Developer"
}
],
"autoload": {
"psr-0": {
"oauth2server": "src/"
}
}
}