oauth2-server/composer.json

45 lines
752 B
JSON
Raw Normal View History

2012-07-05 22:08:58 +05:30
{
"name": "lncd/oauth2",
2012-08-27 20:14:06 +05:30
"description": "OAuth 2.0 Framework",
2013-01-03 04:06:41 +05:30
"version": "0.4.1",
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": {
"php": ">=5.3.0",
"guzzle/guzzle": "*"
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": "hello@alexbilbie.com",
2012-12-11 03:01:08 +05:30
"homepage": "http://www.alexbilbie.com",
2012-07-11 21:32:32 +05:30
"role": "Developer"
}
],
"autoload": {
"psr-0": {
2013-01-05 01:25:13 +05:30
"OAuth2": "src/"
2012-07-11 21:32:32 +05:30
}
},
"suggest": {
"lncd/oauth2-facebook": "Adds support for Facebook as an IDP"
2012-07-11 21:32:32 +05:30
}
2013-01-05 01:25:13 +05:30
}