oauth2-client/composer.json

45 lines
969 B
JSON
Raw Normal View History

2013-01-29 20:06:24 +04:00
{
"name": "lncd/oauth2-client",
"description": "OAuth 2.0 Client Library",
2013-03-25 15:08:07 +04:00
"version": "0.1",
2013-01-29 20:06:24 +04:00
"homepage": "https://github.com/lncd/OAuth2-Client",
"license": "MIT",
"require": {
"php": ">=5.3.0",
"guzzle/guzzle": "*"
},
"require-dev": {
2013-02-26 16:02:22 +04:00
"phpunit/phpunit": "*",
"fzaninotto/faker": "*"
2013-01-29 20:06:24 +04:00
},
"repositories": [
{
"type": "git",
"url": "https://github.com/lncd/OAuth2-Client"
}
],
"keywords": [
"oauth",
"oauth2",
"authorization",
"authentication",
2013-02-25 16:15:36 +04:00
"idp",
"identity",
"sso",
"single sign on"
2013-01-29 20:06:24 +04:00
],
"authors": [
{
"name": "Alex Bilbie",
"email": "hello@alexbilbie.com",
"homepage": "http://www.alexbilbie.com",
"role": "Developer"
}
],
"autoload": {
"psr-0": {
2013-02-25 16:29:47 +04:00
"OAuth2": "src/"
2013-01-29 20:06:24 +04:00
}
}
}