-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.54 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.54 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
{
"name": "dontdrinkandroot/openid-bundle",
"description": "A bridge that provides OpenID capabilities for league/oauth2-server-bundle",
"type": "symfony-bundle",
"license": "Apache-2.0",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Philip Washington Sorst",
"email": "philip@sorst.net",
"homepage": "https://sorst.net"
}
],
"require": {
"php": ">=8.5",
"ext-openssl": "*",
"doctrine/doctrine-bundle": "^3.2",
"doctrine/orm": "^3.6",
"dontdrinkandroot/common": "^0.3",
"league/oauth2-server-bundle": "^1.1",
"symfony/config": "^7",
"symfony/dependency-injection": "^7"
},
"require-dev": {
"dontdrinkandroot/symfony-version-enforcer": "^0.1.1",
"phpunit/phpunit": "^12.5",
"symfony/runtime": "^7"
},
"autoload": {
"psr-4": {
"Dontdrinkandroot\\OpenIdBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Dontdrinkandroot\\OpenIdBundle\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dontdrinkandroot/symfony-version-enforcer": true,
"phpstan/extension-installer": true,
"symfony/runtime": true
}
},
"extra": {
"symfony": {
"require": "7.4.*",
"allow-contrib": true
},
"branch-alias": {
"dev-main": "0.5.x-dev"
}
}
}