-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
106 lines (104 loc) · 3.3 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "shapecode/doctrine-session-handler-bundle",
"description": "Adds a doctrine session handler to a Symfony project.",
"keywords": [
"doctrine",
"session",
"bundle",
"symfony",
"handler"
],
"type": "symfony-bundle",
"homepage": "https://github.com/shapecode/doctrine-session-handler-bundle",
"support": {
"email": "[email protected]",
"issues": "https://github.com/shapecode/doctrine-session-handler-bundle/issues",
"source": "https://github.com/shapecode/doctrine-session-handler-bundle/releases",
"wiki": "https://github.com/shapecode/doctrine-session-handler-bundle/wiki"
},
"license": "MIT",
"authors": [
{
"name": "Nikita Loges",
"homepage": "https://loges.one",
"email": "[email protected]"
},
{
"name": "Contributors",
"homepage": "https://github.com/shapecode/doctrine-session-handler-bundle/graphs/contributors"
}
],
"require": {
"php": "^8.2",
"ext-session": "*",
"symfony/config": "^6.4 || ^7.0",
"symfony/http-kernel": "^6.4 || ^7.0",
"symfony/dependency-injection": "^6.4 || ^7.0",
"psr/clock": "^1.0",
"doctrine/dbal": "^3.0 || ^4.0",
"doctrine/persistence": "^3.2",
"doctrine/orm": "^2.7 || ^3.2",
"nesbot/carbon": "^3.5",
"doctrine/doctrine-bundle": "^2.12"
},
"require-dev":{
"doctrine/coding-standard": "^12.0",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.7",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-strict-rules": "^1.5",
"maglnet/composer-require-checker": "^4.7",
"phpunit/phpunit": "^10.5",
"symfony/var-dumper": "^7.0",
"dg/bypass-finals": "^1.5",
"icanhazstring/composer-unused": "^0.8"
},
"autoload": {
"psr-4": {
"Shapecode\\Bundle\\Doctrine\\SessionHandlerBundle\\": "src/"
}
},
"scripts": {
"check": [
"@crc",
"@unused",
"@cs-check",
"@phpstan"
],
"unused": "vendor/bin/composer-unused",
"phpstan-update-baseline": "phpstan analyse --ansi --generate-baseline phpstan-baseline.neon",
"phpstan": "./vendor/bin/phpstan analyse ./src",
"crc": "./vendor/bin/composer-require-checker --config-file=./composer-require-checker.json",
"phpunit": "./vendor/bin/phpunit",
"cs-fix": "./vendor/bin/phpcbf",
"cs-check": "./vendor/bin/phpcs -s"
},
"config": {
"preferred-install": {
"*": "dist"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"icanhazstring/composer-unused": true
}
},
"extra": {
"branch-alias": {
"dev-master": "6.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"funding": [
{
"type": "paypal",
"url": "http://paypal.me/nloges"
},
{
"type": "liberapay",
"url": "https://liberapay.com/nicklog"
}
]
}