-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 803 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 803 Bytes
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
{
"name": "dorcyv/jwt-session-bundle",
"type": "symfony-bundle",
"description": "Provide a client side session with JWT tokens",
"license": "MIT",
"keywords": [
"symfony",
"session",
"jwt"
],
"authors": [
{
"name": "Valérian Dorcy",
"email": "valerian.dorcy@gmail.com"
}
],
"require": {
"php": ">=7.1",
"lcobucci/jwt": "^3.2",
"symfony/http-foundation": ">=3.4",
"symfony/event-dispatcher": ">=3.4",
"doctrine/collections": "^1.5",
"symfony/http-kernel": ">=3.4",
"symfony/config": ">=3.4",
"symfony/dependency-injection": ">=3.4"
},
"autoload": {
"psr-4": {
"Dorcyv\\JwtSessionBundle\\": ""
}
}
}