forked from knpuniversity/oauth2-client-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.21 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
37
38
39
{
"name": "knpuniversity/oauth2-client-bundle",
"type": "symfony-bundle",
"description": "Integration with league/oauth2-client to provide services",
"keywords": ["oauth", "oauth2"],
"homepage": "https://symfonycasts.com",
"license": "MIT",
"authors": [
{
"name": "Ryan Weaver",
"email": "ryan@symfonycasts.com"
}
],
"require": {
"php": "^7.1.3",
"symfony/framework-bundle": "^4.4|^5.0",
"symfony/dependency-injection": "^4.4|^5.0",
"symfony/routing": "^4.4|^5.0",
"symfony/http-foundation": "^4.4|^5.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/phpunit-bridge": "^4.4|^5.0",
"symfony/security-guard": "^4.4|^5.0",
"symfony/yaml": "^4.4|^5.0",
"phpspec/prophecy": "^1.8",
"phpstan/phpstan": "^0.11.16"
},
"suggest": {
"symfony/security-guard": "For integration with Symfony's Guard Security layer"
}
}