oauth2-client/composer.json

48 lines
1.0 KiB
JSON
Raw Normal View History

2013-01-29 20:06:24 +04:00
{
2013-05-28 14:00:24 +04:00
"name": "league/oauth2-client",
2013-01-29 20:06:24 +04:00
"description": "OAuth 2.0 Client Library",
"license": "MIT",
"require": {
"php": ">=5.4.0",
2014-05-03 13:18:59 +04:00
"guzzle/guzzle": "~3.7"
2013-01-29 20:06:24 +04:00
},
"require-dev": {
2014-05-03 13:18:59 +04:00
"phpunit/phpunit": "~4.0",
"mockery/mockery": "~0.9",
2014-05-03 14:34:52 +04:00
"squizlabs/php_codesniffer": "~1.5"
2013-01-29 20:06:24 +04:00
},
"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": {
2014-04-24 07:56:53 +04:00
"psr-4": {
2014-05-03 13:18:59 +04:00
"League\\OAuth2\\Client\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"League\\OAuth2\\Client\\Test\\": "test/src/"
2013-01-29 20:06:24 +04:00
}
2014-05-03 13:18:59 +04:00
},
"extra": {
"branch-alias": {
"dev-master": "0.5.x-dev"
2014-05-03 13:18:59 +04:00
}
2013-01-29 20:06:24 +04:00
}
}