forked from markitosgv/JWTRefreshTokenBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
74 lines (74 loc) · 2.19 KB
/
composer.json
File metadata and controls
74 lines (74 loc) · 2.19 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "gesdinet/jwt-refresh-token-bundle",
"description": "Implements a refresh token system over Json Web Tokens in Symfony",
"license": [
"MIT"
],
"type": "symfony-bundle",
"keywords": [
"jwt refresh token bundle symfony json web"
],
"authors": [
{
"name": "Marcos Gómez Vilches",
"email": "marcos@gesdinet.com"
}
],
"require": {
"php": ">=8.2 || ^8.3 || ^8.4",
"doctrine/persistence": "^3.1 || ^4.0",
"lexik/jwt-authentication-bundle": "^2.15 || ^3.0",
"symfony/config": "^6.4 || ^7.0 || ^7.2 || ^8.0",
"symfony/console": "^6.4 || ^7.2 || ^8.0",
"symfony/dependency-injection": "^6.4 || ^7.0 || ^7.2 || ^8.0",
"symfony/deprecation-contracts": "^2.1 || ^3.0 || ^4.0",
"symfony/event-dispatcher": "^6.4 || ^7.0 || ^7.2 || ^8.0",
"symfony/http-foundation": "^6.4 || ^7.0 || ^7.2 || ^8.0",
"symfony/http-kernel": "^6.4 || ^7.0 || ^7.2 || ^8.0",
"symfony/property-access": "^6.4 || ^7.0 || ^7.2 || ^8.0",
"symfony/security-bundle": "^6.4 || ^7.0 || ^7.2 || ^8.0",
"symfony/security-core": "^6.4 || ^7.0 || ^7.2 || ^8.0",
"symfony/security-http": "^6.4 || ^7.2 || ^8.0"
},
"require-dev": {
"doctrine/mongodb-odm": "^2.7",
"mongodb/mongodb": "^2.1",
"doctrine/orm": "^2.20 || ^3.0",
"ergebnis/composer-normalize": "*",
"matthiasnoback/symfony-config-test": "^5.1 || ^6.0",
"matthiasnoback/symfony-dependency-injection-test": "^5.1 || ^6.0",
"phpunit/phpunit": "^10.5 || ^12.2",
"rector/jack": "^0.5.0",
"rector/rector": "^2.2",
"symfony/cache": "^6.4 || ^7.2 || ^8.0",
"vimeo/psalm": "^7.0@beta"
},
"conflict": {
"doctrine/mongodb-odm": "<2.7",
"doctrine/orm": "<2.20"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Gesdinet\\JWTRefreshTokenBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Gesdinet\\JWTRefreshTokenBundle\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"ergebnis/composer-normalize": true
},
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
}
}