forked from silasjoisten/sonata-oauth2-login-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.1 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
43
44
45
{
"name": "silasjoisten/sonata-oauth2-login-bundle",
"type": "symfony-bundle",
"description": "Login via Google with Email Validation in a Sonata Project",
"license": "MIT",
"authors": [
{
"name": "Silas Joisten",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"google/apiclient": "^2.1",
"hwi/oauth-bundle": "^1.1",
"php-http/guzzle6-adapter": "^2.0",
"php-http/httplug": "^2.2",
"sonata-project/user-bundle": "^4.7|^5.1",
"twig/twig": "^2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.15",
"matthiasnoback/symfony-dependency-injection-test": "^4.0",
"mockery/mockery": "^1.6",
"phpunit/phpunit": "^9.5",
"symfony/phpunit-bridge": "^4.3",
"vincentlanglet/twig-cs-fixer": "^1.1"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"autoload": {
"psr-4": {
"SilasJoisten\\Sonata\\Oauth2LoginBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SilasJoisten\\Sonata\\Oauth2LoginBundle\\Tests\\": "tests/"
}
}
}