-
Notifications
You must be signed in to change notification settings - Fork 85
/
composer.json
54 lines (54 loc) · 1.67 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
{
"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": "^8.1",
"ext-openssl": "*",
"doctrine/doctrine-bundle": "^2.8.0",
"doctrine/orm": "^2.14|^3.0",
"league/oauth2-server": "^9.0.1",
"nyholm/psr7": "^1.4",
"psr/http-factory": "^1.0",
"symfony/event-dispatcher": "^5.4|^6.2|^7.0",
"symfony/filesystem": "^5.4|^6.0|^7.0",
"symfony/framework-bundle": "^5.4|^6.2|^7.0",
"symfony/polyfill-php81": "^1.22",
"symfony/psr-http-message-bridge": "^2.0|^6|^7",
"symfony/security-bundle": "^5.4|^6.2|^7.0"
},
"require-dev": {
"ext-pdo": "*",
"ext-pdo_sqlite": "*",
"symfony/browser-kit": "^5.4|^6.2|^7.0",
"symfony/phpunit-bridge": "^5.4|^6.2|^7.0"
},
"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.9-dev"
}
},
"minimum-stability": "dev"
}