-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.35 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
{
"name": "yivoff/jwt-refresh-bundle",
"type": "symfony-bundle",
"description": "Token Refresh for JWT. Independent of persistence layer, splitting id/hash for verification",
"license": "MIT",
"require": {
"php": ">=8.1",
"lexik/jwt-authentication-bundle": "^v2.20.3",
"symfony/config": "^6.3|^7.0.0",
"symfony/dependency-injection": "^6.3|^7.0.0",
"symfony/framework-bundle": "^6.3|^7.0.0"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8.2",
"nyholm/symfony-bundle-test": "dev-master",
"symfony/console": "^6.3|^7.0.0"
},
"suggest": {
"symfony/console": "^6.3|^7.0.0"
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
},
"autoload": {
"psr-4": {
"Yivoff\\JwtRefreshBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Yivoff\\JwtRefreshBundle\\Test\\": "tests"
}
},
"scripts": {
"dev:cs": "vendor-bin/csfixer/vendor/friendsofphp/php-cs-fixer/php-cs-fixer fix",
"dev:preflight": [
"@dev:cs",
"@dev:psalm",
"@dev:tests"
],
"dev:psalm": "vendor-bin/static/vendor/vimeo/psalm/psalm",
"dev:tests": "vendor-bin/testing/vendor/phpunit/phpunit/phpunit",
"dev:coverage": "vendor-bin/testing/vendor/phpunit/phpunit",
"dev:tests-pretty": "vendor-bin/testing/vendor/phpunit/phpunit/phpunit --testdox"
}
}