oauth2-server/composer.json

51 lines
1.2 KiB
JSON
Raw Normal View History

2012-07-05 22:08:58 +05:30
{
2013-05-08 23:36:49 +05:30
"name": "league/oauth2-server",
2013-05-07 01:13:38 +05:30
"description": "A lightweight and powerful OAuth 2.0 authorization and resource server library with support for all the core specification grants. This library will allow you to secure your API with OAuth and allow your applications users to approve apps that want to access their data from your API.",
2013-06-02 18:24:47 +05:30
"version": "2.1.1",
2013-05-09 10:38:43 +05:30
"homepage": "https://github.com/php-loep/oauth2-server",
2012-07-11 21:32:32 +05:30
"license": "MIT",
"require": {
"php": ">=5.3.0"
2012-08-01 20:11:41 +05:30
},
"require-dev": {
"mockery/mockery": ">=0.7.2",
2013-07-27 05:17:21 +05:30
"league/phpunit-coverage-listener": "dev-master"
2012-07-11 21:32:32 +05:30
},
"repositories": [
{
"type": "git",
2013-05-07 01:43:11 +05:30
"url": "https://github.com/php-loep/oauth2-server.git"
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"
}
],
2013-05-07 01:27:44 +05:30
"replace": {
2013-05-09 08:09:15 +05:30
"lncd/oauth2": "*",
"league/oauth2server": "*"
2013-05-07 01:27:44 +05:30
},
2012-07-11 21:32:32 +05:30
"autoload": {
"psr-0": {
"League\\OAuth2\\Server": "src/"
2012-07-11 21:32:32 +05:30
}
},
"suggest": {
"zetacomponents/database": "A PDO implementation of the storage classes",
"doctrine/dbal": "A Doctrine/DBAL implementation of the storage classes"
}
}