-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.33 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
{
"name": "anzusystems/auth-bundle",
"description": "Anzu authorization services",
"type": "symfony-bundle",
"keywords": ["symfony", "anzusystems", "authorization"],
"license": "Apache-2.0",
"authors": [
{
"name": "AnzuSystems Community",
"homepage": "https://github.com/orgs/anzusystems/people"
}
],
"require": {
"php": ">=8.2",
"ext-json": "*",
"ext-redis": "*",
"anzusystems/common-bundle": "^7.0|^8.0",
"doctrine/common": "^3.3",
"lcobucci/jwt": "^4.2"
},
"require-dev": {
"doctrine/orm": "^2.13|^3.0",
"nelmio/api-doc-bundle": "^4.9",
"slevomat/coding-standard": "^8.5",
"symfony/test-pack": "^1.0",
"symplify/easy-coding-standard": "^11.1",
"vimeo/psalm": "^5.0"
},
"autoload": {
"psr-4": {
"AnzuSystems\\AuthBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"AnzuSystems\\AuthBundle\\Tests\\": "tests"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"symfony/runtime": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}