Merge pull request #163 from GrahamCampbell/composer

Updated composer.json
This commit is contained in:
Alex Bilbie 2014-05-03 10:44:31 +01:00
commit 76289c68da

View File

@ -1,54 +1,64 @@
{ {
"name": "league/oauth2-server", "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.", "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": "https://github.com/php-loep/oauth2-server", "homepage": "https://github.com/php-loep/oauth2-server",
"license": "MIT", "license": "MIT",
"require": { "require": {
"php": ">=5.4.0", "php": ">=5.4.0",
"symfony/http-foundation": "2.*" "symfony/http-foundation": "~2.1"
}, },
"require-dev": { "require-dev": {
"league/phpunit-coverage-listener": "~1.0", "phpunit/phpunit": "~4.0",
"mockery/mockery": "0.8" "mockery/mockery": "~0.9",
}, "league/phpunit-coverage-listener": "~1.0"
"repositories": [ },
{ "repositories": [
"type": "git", {
"url": "https://github.com/thephpleague/oauth2-server.git" "type": "git",
} "url": "https://github.com/thephpleague/oauth2-server.git"
], }
"keywords": [ ],
"oauth", "keywords": [
"oauth",
"oauth2", "oauth2",
"oauth 2", "oauth 2",
"oauth 2.0", "oauth 2.0",
"server", "server",
"auth", "auth",
"authorization", "authorization",
"authorisation", "authorisation",
"authentication", "authentication",
"resource", "resource",
"api", "api",
"auth", "auth",
"protect", "protect",
"secure" "secure"
], ],
"authors": [ "authors": [
{ {
"name": "Alex Bilbie", "name": "Alex Bilbie",
"email": "hello@alexbilbie.com", "email": "hello@alexbilbie.com",
"homepage": "http://www.alexbilbie.com", "homepage": "http://www.alexbilbie.com",
"role": "Developer" "role": "Developer"
} }
], ],
"replace": { "replace": {
"lncd/oauth2": "*", "lncd/oauth2": "*",
"league/oauth2server": "*" "league/oauth2server": "*"
}, },
"autoload": { "autoload": {
"psr-4": {
"League\\OAuth2\\Server\\": "src/"
}
},
"autoload-dev": {
"psr-4": { "psr-4": {
"League\\OAuth2\\Server\\": "src/",
"LeagueTests\\": "tests/" "LeagueTests\\": "tests/"
} }
} },
"extra": {
"branch-alias": {
"dev-v4.0.0-WIP": "4.0-dev"
}
}
} }