forked from thephpleague/oauth2-server-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.49 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
{
"name": "league/oauth2-server-bundle",
"type": "symfony-bundle",
"description": "Symfony bundle .",
"keywords": ["oauth2", "authorization", "server", "bundle", "auth", "bundle"],
"homepage": "https://github.com/thephpleague/oauth2-server-bundle",
"license": "MIT",
"authors": [
{
"name": "Robin Chalas",
"email": "[email protected]"
},
{
"name": "All contributors",
"homepage": "https://github.com/thephpleague/oauth2-server-bundle/graphs/contributors"
}
],
"require": {
"php": ">=7.2",
"doctrine/doctrine-bundle": "^2.0",
"doctrine/orm": "^2.7.1",
"league/oauth2-server": "^8.0",
"nyholm/psr7": "^1.4",
"psr/http-factory": "^1.0",
"symfony/framework-bundle": "^5.3",
"symfony/psr-http-message-bridge": "^2.0",
"symfony/security-bundle": "^5.3"
},
"require-dev": {
"ext-pdo": "*",
"ext-pdo_sqlite": "*",
"psalm/plugin-symfony": "^2.2",
"symfony/browser-kit": "^5.3",
"symfony/phpunit-bridge": "^5.3",
"vimeo/psalm": "^4.6"
},
"autoload": {
"psr-4": { "League\\Bundle\\OAuth2ServerBundle\\": "src/" }
},
"autoload-dev": {
"psr-4": { "League\\Bundle\\OAuth2ServerBundle\\Tests\\": "tests/" }
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "0.1-dev"
}
}
}