oauth2-client/composer.json

51 lines
1.1 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",
2015-02-20 22:24:14 +03:00
"ext-curl": "*",
"egeloen/http-adapter": "0.6.*"
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",
"squizlabs/php_codesniffer": "~2.0",
"satooshi/php-coveralls": "0.6.*",
"jakub-onderka/php-parallel-lint": "0.8.*"
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.10.x-dev"
2014-05-03 13:18:59 +04:00
}
2013-01-29 20:06:24 +04:00
}
}