-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathcomposer.json
More file actions
66 lines (66 loc) · 2.12 KB
/
composer.json
File metadata and controls
66 lines (66 loc) · 2.12 KB
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
{
"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": "robin.chalas@gmail.com"
},
{
"name": "All contributors",
"homepage": "https://github.com/thephpleague/oauth2-server-bundle/graphs/contributors"
}
],
"require": {
"php": "^8.1",
"ext-openssl": "*",
"league/oauth2-server": "^9.2",
"nyholm/psr7": "^1.4",
"psr/http-factory": "^1.0",
"symfony/deprecation-contracts": "^3.0",
"symfony/event-dispatcher": "^6.4|^7.0|^8.0",
"symfony/filesystem": "^6.4|^7.0|^8.0",
"symfony/framework-bundle": "^6.4|^7.0|^8.0",
"symfony/psr-http-message-bridge": "^6.4|^7.0|^8.0",
"symfony/password-hasher": "^6.4|^7.0|^8.0",
"symfony/security-bundle": "^6.4|^7.0|^8.0"
},
"require-dev": {
"ext-pdo": "*",
"ext-pdo_sqlite": "*",
"doctrine/doctrine-bundle": "^2.8|^3.0",
"doctrine/orm": "^2.14|^3.0",
"php-cs-fixer/shim": "^3.38",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-symfony": "^2.0",
"symfony/browser-kit": "^6.4|^7.0|^8.0",
"symfony/phpunit-bridge": "^7.3"
},
"conflict": {
"doctrine/doctrine-bundle": "<2.8.0",
"doctrine/orm": "<2.14"
},
"suggest": {
"doctrine/doctrine-bundle": "Allow usage of doctrine as persistence layer",
"doctrine/orm": "Allow usage of doctrine as persistence layer"
},
"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": "1.x-dev"
}
},
"minimum-stability": "dev"
}