You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
909 B
44 lines
909 B
{
|
|
"name": "vitalif/oauth2-client",
|
|
"description": "OAuth 2.0 Client Library Simplified",
|
|
"license": "MIT",
|
|
"require": {
|
|
"php": ">=5.4.0"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "~4.0"
|
|
},
|
|
"keywords": [
|
|
"oauth",
|
|
"oauth2",
|
|
"authorization",
|
|
"authentication",
|
|
"idp",
|
|
"identity",
|
|
"sso",
|
|
"single sign on"
|
|
],
|
|
"authors": [
|
|
{
|
|
"name": "Alex Bilbie",
|
|
"email": "hello@alexbilbie.com",
|
|
"homepage": "http://www.alexbilbie.com",
|
|
"role": "Developer"
|
|
}
|
|
],
|
|
"autoload": {
|
|
"psr-4": {
|
|
"OAuth2\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"OAuth2\\Test\\": "test/src/"
|
|
},
|
|
"files": ["test/CurlMock.php"]
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
}
|
|
}
|
|
}
|
|
|