forked from knpuniversity/oauth2-client-bundle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
36 lines (36 loc) · 1.12 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "knpuniversity/oauth2-client-bundle",
"type": "symfony-bundle",
"description": "Integration with league/oauth2-client to provide services",
"keywords": ["oauth", "oauth2"],
"homepage": "http://knpuniversity.com",
"license": "MIT",
"authors": [
{
"name": "Ryan Weaver",
"email": "[email protected]"
}
],
"require": {
"php": " >=5.5.9",
"symfony/framework-bundle": "^2.7|^3.0|^4.0",
"symfony/dependency-injection": "^2.8|^3.0|^4.0",
"symfony/routing": "^2.7|^3.0|^4.0",
"symfony/http-foundation": "^2.7|^3.0|^4.0",
"league/oauth2-client": "^1.0|^2.0"
},
"autoload": {
"psr-4": { "KnpU\\OAuth2ClientBundle\\": "src/" }
},
"autoload-dev": {
"psr-4": { "KnpU\\OAuth2ClientBundle\\Tests\\": "tests/" }
},
"require-dev": {
"league/oauth2-facebook": "^1.1|^2.0",
"symfony/security-guard": "^2.8|^3.0",
"phpunit/phpunit": "^4.8.36"
},
"suggest": {
"symfony/security-guard": "For integration with Symfony's Guard Security layer"
}
}