-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
67 lines (59 loc) · 1.78 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "remessage/security-bundle",
"description": "Security Bundle based on Json Web Token",
"type": "symfony-bundle",
"license": "Apache-2.0",
"homepage": "https://dev.remessage.ru/security-bundle",
"authors": [
{
"name": "Oleg Kozlov",
"email": "h1karo@remessage.ru",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"RM\\Bundle\\JwtSecurityBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RM\\Bundle\\JwtSecurityBundle\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.3",
"ext-ctype": "*",
"ext-iconv": "*",
"remessage/json-web-token": "^0.7.0",
"symfony/framework-bundle": "^7.0",
"symfony/event-dispatcher": "^7.0",
"symfony/deprecation-contracts": "^3.0",
"symfony/console": "^7.0",
"symfony/security-bundle": "^7.0",
"symfony/monolog-bundle": "^3.5",
"doctrine/collections": "^2.1.4"
},
"require-dev": {
"symfony/phpunit-bridge": "^7.0",
"symfony/browser-kit": "^7.0",
"vimeo/psalm": "^5.16",
"psalm/plugin-phpunit": "^0.18.4",
"psalm/plugin-symfony": "^5.1",
"friendsofphp/php-cs-fixer": "^3.8",
"remessage/ruleset": "^1.0",
"symfony/web-profiler-bundle": " ^7.0",
"symfony/twig-bundle": "^7.0",
"symfony/twig-bridge": "^7.0",
"twig/twig": "^3.0",
"predis/predis": "^2.2.2",
"symfony/http-client": "^7.0",
"nyholm/psr7": "^1.5",
"roave/security-advisories": "dev-latest"
},
"scripts": {
"test": "simple-phpunit",
"lint": "php-cs-fixer fix --show-progress=dots",
"analyze": "psalm"
}
}