oauth2-client/composer.json

45 lines
909 B
JSON
Raw Permalink Normal View History

2013-01-29 20:06:24 +04:00
{
"name": "vitalif/oauth2-client",
"description": "OAuth 2.0 Client Library Simplified",
2013-01-29 20:06:24 +04:00
"license": "MIT",
"require": {
"php": ">=5.4.0"
2013-01-29 20:06:24 +04:00
},
"require-dev": {
"phpunit/phpunit": "~4.0"
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": {
"OAuth2\\": "src/"
2014-05-03 13:18:59 +04:00
}
},
"autoload-dev": {
"psr-4": {
"OAuth2\\Test\\": "test/src/"
},
"files": ["test/CurlMock.php"]
2014-05-03 13:18:59 +04:00
},
"extra": {
"branch-alias": {
}
2013-01-29 20:06:24 +04:00
}
}