-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
68 lines (68 loc) · 2.08 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
{
"name": "tymy.cz/tymy.cz",
"description": "Tymy.CZ application.",
"homepage": "https://www.tymy.cz",
"type": "project",
"license": ["BSD-3-Clause", "GPL-2.0", "GPL-3.0"],
"authors": [
{
"name": "Matěj Kmínek",
"homepage": "https://www.tymy.cz"
}
],
"require": {
"php": ">=8.3",
"nette/application": "^3",
"nette/bootstrap": "^3",
"nette/caching": "^3",
"nette/database": "^3",
"nette/di": "^3",
"nette/forms": "^3",
"nette/http": "^3",
"nette/mail": "^4",
"nette/security": "^3",
"nette/utils": "^4",
"tracy/tracy": "^2",
"contributte/translation": "^2",
"globalcitizen/php-iban": "^4.0",
"minishlink/web-push": "^9",
"ext-curl": "*",
"ext-zip": "*",
"ext-gd": "*",
"ext-xml": "*",
"ext-gmp": "*",
"ext-mbstring": "*",
"lcobucci/jwt": "4.1.5",
"vojir/nette-csv-response": "v1.2",
"contributte/sentry": "^0.3.0",
"phpoffice/phpspreadsheet": "^3"
},
"suggest": {
"ext-memcached": "To use Memcached as CacheStorage (default for tymy.cz). If you dont want to use MemCached, override cache storage in your local/config.neon"
},
"require-dev": {
"nette/tester": "^2.0",
"squizlabs/php_codesniffer": "^3",
"phpstan/phpstan": "^1",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-nette": "^1",
"phpstan/phpstan-strict-rules": "^1.5",
"rector/rector": "^0",
"roave/security-advisories": "dev-latest",
"slevomat/coding-standard": "^8"
},
"autoload": {
"classmap": ["app/"]
},
"autoload-dev": {
"classmap": ["app/", "tests/"]
},
"minimum-stability": "stable",
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"discard-changes": true,
"secure-http": false
}
}