-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
39 lines (39 loc) · 1.09 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
{
"name": "connectholland/secure-jwt-bundle",
"type": "library",
"description": "Bundle to increase security of JWT based security",
"license": "proprietary",
"require": {
"php": "^7.4",
"lexik/jwt-authentication-bundle": "^2.16",
"ext-json": "*",
"doctrine/orm": "^2.7",
"symfony/messenger": "^5.4",
"api-platform/api-pack": "^1.2",
"api-platform/core": "^2.5",
"scheb/two-factor-bundle": "^4.16",
"endroid/qr-code-bundle": "^3.4",
"friendsofsymfony/rest-bundle": "^3.0",
"laminas/laminas-zendframework-bridge": "^1.4"
},
"autoload": {
"psr-4": {
"ConnectHolland\\SecureJWTBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ConnectHolland\\SecureJWTBundle\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.1",
"rector/rector": "^0.14.5"
},
"config": {
"allow-plugins": {
"ocramius/package-versions": true,
"endroid/installer": true
}
}
}