mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-11-02 00:43:11 +05:30
69 lines
1.8 KiB
JSON
69 lines
1.8 KiB
JSON
{
|
|
"name": "league/oauth2-server",
|
|
"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.",
|
|
"homepage": "http://oauth2.thephpleague.com/",
|
|
"license": "MIT",
|
|
"require": {
|
|
"php": ">=5.5.9",
|
|
"league/event": "~2.1",
|
|
"zendframework/zend-diactoros": "~1.1",
|
|
"namshi/jose": "^6.0",
|
|
"lcobucci/jwt": "^3.1"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "4.8.*",
|
|
"mockery/mockery": "0.9.*",
|
|
"codeception/codeception": "~2.0",
|
|
"flow/jsonpath": "0.2.*"
|
|
},
|
|
"repositories": [
|
|
{
|
|
"type": "git",
|
|
"url": "https://github.com/thephpleague/oauth2-server.git"
|
|
}
|
|
],
|
|
"keywords": [
|
|
"oauth",
|
|
"oauth2",
|
|
"oauth 2",
|
|
"oauth 2.0",
|
|
"server",
|
|
"auth",
|
|
"authorization",
|
|
"authorisation",
|
|
"authentication",
|
|
"resource",
|
|
"api",
|
|
"auth",
|
|
"protect",
|
|
"secure"
|
|
],
|
|
"authors": [
|
|
{
|
|
"name": "Alex Bilbie",
|
|
"email": "hello@alexbilbie.com",
|
|
"homepage": "http://www.alexbilbie.com",
|
|
"role": "Developer"
|
|
}
|
|
],
|
|
"replace": {
|
|
"lncd/oauth2": "*",
|
|
"league/oauth2server": "*"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"League\\OAuth2\\Server\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"LeagueTests\\": "tests/unit/"
|
|
}
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-V5-WIP": "5.0-dev"
|
|
}
|
|
}
|
|
}
|