forked from FriendsOfSymfony/FOSOAuthServerBundle
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathcomposer.json
executable file
·69 lines (69 loc) · 2.09 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "klapaudius/oauth-server-bundle",
"type": "symfony-bundle",
"description": "Symfony(5.x to 7.x) OAuth Server Bundle",
"keywords": ["oauth", "oauth2", "server"],
"homepage": "https://github.com/klapaudius/FOSOAuthServerBundle",
"license": "MIT",
"authors": [
{
"name": "Klapaudius",
"email": "[email protected]"
},
{
"name": "Arnaud Le Blanc",
"email": "[email protected]"
},
{
"name": "FriendsOfSymfony Community",
"homepage": "https://github.com/FriendsOfSymfony/FOSOAuthServerBundle/contributors"
}
],
"require": {
"php": "^8.0",
"doctrine/doctrine-bundle": "~2.0",
"klapaudius/oauth2-php": "~1.6",
"symfony/dependency-injection": "~7.0",
"symfony/form": "~7.0",
"symfony/framework-bundle": "~7.0",
"symfony/security-bundle": "~7.0",
"symfony/twig-bundle": "~7.0"
},
"require-dev": {
"doctrine/mongodb-odm": "~2.0",
"doctrine/orm": "~2.2",
"friendsofphp/php-cs-fixer": "^3.0",
"phing/phing": "~2.4",
"php-mock/php-mock-phpunit": "~1.0|~2.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "~9.0",
"symfony/class-loader": "^2.0",
"symfony/console": "~7.0",
"symfony/phpunit-bridge": "~7.0",
"symfony/templating": "~6.0|~7.0",
"symfony/yaml": "~7.0"
},
"support": {
"issues": "https://github.com/klapaudius/FOSOAuthServerBundle/issues"
},
"suggest": {
"doctrine/doctrine-bundle": "*",
"doctrine/mongodb-odm-bundle": "*",
"symfony/form" : "Needed to be able to use the AuthorizeFormType",
"symfony/console": "Needed to be able to use commands"
},
"autoload": {
"psr-4": {
"FOS\\OAuthServerBundle\\": ""
},
"exclude-from-classmap": ["/Tests/"]
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "5.0-dev"
}
}
}