forked from pematon/mysql-session-handler
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
52 lines (52 loc) · 1.22 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
{
"name": "spaze/mysql-session-handler",
"description": "MySQL session handler for Nette Framework with optionally encrypted storage",
"license": "MIT",
"authors": [
{
"name": "Michal Špaček",
"homepage": "https://www.michalspacek.com",
"email": "mail@michalspacek.cz"
},
{
"name": "Pematon, s.r.o.",
"homepage": "http://www.pematon.com"
}
],
"require": {
"php": "^8.2",
"nette/database": "^3.1",
"nette/di": "^3.0",
"nette/utils": "^3.2|^4.0"
},
"require-dev": {
"nette/schema": "^1.2",
"php-parallel-lint/php-parallel-lint": "^1.3",
"php-parallel-lint/php-console-highlighter": "^1.0",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-nette": "^1.0",
"spaze/coding-standard": "^1.3",
"spaze/encryption": "^2.0"
},
"scripts": {
"lint": "vendor/bin/parallel-lint --colors src/",
"phpcs": "vendor/bin/phpcs src/",
"phpstan": "vendor/phpstan/phpstan/phpstan --ansi analyse --configuration phpstan.neon",
"test": [
"@lint",
"@phpcs",
"@phpstan"
]
},
"autoload": {
"classmap": ["src/"]
},
"suggest": {
"spaze/encryption": "Adds a support for encrypted session storage"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}