forked from Harborn-digital/secure-jwt-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
31 lines (31 loc) · 874 Bytes
/
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
{
"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.6",
"ext-json": "*",
"doctrine/orm": "^2.7",
"symfony/messenger": "^5.0",
"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"
},
"autoload": {
"psr-4": {
"ConnectHolland\\SecureJWTBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ConnectHolland\\SecureJWTBundle\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.1"
}
}