forked from knpuniversity/oauth2-client-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.31 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
40
41
42
{
"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",
"minimum-stability": "dev",
"authors": [
{
"name": "Ryan Weaver",
"email": "ryan@symfonycasts.com"
}
],
"require": {
"php": ">=7.4",
"symfony/framework-bundle": "^4.4|^5.0|^6.0",
"symfony/dependency-injection": "^4.4|^5.0|^6.0",
"symfony/routing": "^4.4|^5.0|^6.0",
"symfony/http-foundation": "^4.4|^5.0|^6.0",
"league/oauth2-client": "^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": "^5.3.1|^6.0",
"symfony/security-guard": "^4.4|^5.0|^6.0",
"symfony/yaml": "^4.4|^5.0|^6.0",
"phpstan/phpstan": "^0.12"
},
"suggest": {
"symfony/security-guard": "For integration with Symfony's Guard Security layer"
},
"scripts": {
"test": "simple-phpunit && phpstan analyze"
}
}