oauth2-server/composer.json

44 lines
709 B
JSON
Raw Normal View History

2012-07-05 22:08:58 +05:30
{
"name": "lncd/oauth2",
2012-08-27 20:14:06 +05:30
"description": "OAuth 2.0 Framework",
2013-02-21 23:14:26 +05:30
"version": "1.0.4",
2012-07-23 18:52:05 +05:30
"homepage": "https://github.com/lncd/OAuth2",
2012-07-11 21:32:32 +05:30
"license": "MIT",
"require": {
2013-02-15 22:38:27 +05:30
"php": ">=5.3.0"
2012-08-01 20:11:41 +05:30
},
"require-dev": {
2013-02-15 22:38:27 +05:30
"phpunit/phpunit": "*",
"mockery/mockery": ">=0.7.2"
2012-07-11 21:32:32 +05:30
},
"repositories": [
{
"type": "git",
2012-07-23 18:52:05 +05:30
"url": "https://github.com/lncd/OAuth2"
2012-07-11 21:32:32 +05:30
}
],
"keywords": [
"oauth",
"oauth2",
2012-08-27 20:14:06 +05:30
"server",
"authorization",
"authentication",
2013-02-15 22:38:27 +05:30
"resource",
"api"
2012-07-11 21:32:32 +05:30
],
"authors": [
{
"name": "Alex Bilbie",
"email": "hello@alexbilbie.com",
2012-12-11 03:01:08 +05:30
"homepage": "http://www.alexbilbie.com",
2012-07-11 21:32:32 +05:30
"role": "Developer"
}
],
"autoload": {
"psr-0": {
2013-02-15 22:38:27 +05:30
"OAuth2": "src/"
2012-07-11 21:32:32 +05:30
}
},
2013-02-15 22:38:27 +05:30
"suggest": {}
}