oauth2-server/composer.json

37 lines
637 B
JSON
Raw Normal View History

2012-07-05 17:38:58 +01:00
{
2012-07-23 14:41:15 +01:00
"name": "lncd/Oauth2",
2012-07-11 17:02:32 +01:00
"description": "OAuth 2.0 server - UNDER DEVELOPMENT - NOT READY FOR PRIMETIME",
"version": "0.0.1",
2012-07-23 14:22:05 +01:00
"homepage": "https://github.com/lncd/OAuth2",
2012-07-11 17:02:32 +01:00
"license": "MIT",
"require": {
2012-08-01 15:44:03 +01:00
"php": ">=5.3.0"
2012-08-01 15:41:41 +01:00
},
"require-dev": {
"EHER/PHPUnit": "*"
2012-07-11 17:02:32 +01:00
},
"repositories": [
{
"type": "git",
2012-07-23 14:22:05 +01:00
"url": "https://github.com/lncd/OAuth2"
2012-07-11 17:02:32 +01:00
}
],
"keywords": [
"oauth",
"oauth2",
"server"
],
"authors": [
{
"name": "Alex Bilbie",
"email": "oauth2server@alexbilbie.com",
"homepage": "http://www.httpster.org",
"role": "Developer"
}
],
"autoload": {
"psr-0": {
2012-07-23 14:41:15 +01:00
"Oauth2": "src/"
2012-07-11 17:02:32 +01:00
}
}
2012-07-05 17:38:58 +01:00
}