-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
65 lines (65 loc) · 1.65 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
{
"name": "jtojnar/entries",
"description": "Entry registration system for rogaining",
"homepage": "https://github.com/jtojnar/entries",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Jan Tojnar",
"homepage": "https://ogion.cz"
}
],
"require": {
"php": ">= 8.1",
"contributte/mail": "^0.7.0",
"contributte/translation": "^2.0",
"kdyby/forms-replicator": "^2.0.0",
"latte/latte": "~2.5",
"moneyphp/money": "^4.0",
"nette/application": "~3.0",
"nette/bootstrap": "~3.0",
"nette/caching": "~3.0",
"nette/di": "~3.0",
"nette/finder": "~2.5",
"nette/forms": "^3.0",
"nette/http": "~3.0",
"nette/mail": "~3.0",
"nette/schema": "^1.2",
"nette/security": "~3.0",
"nette/utils": "~3.0",
"nextras/form-components": "^1.0.0",
"nextras/forms-rendering": "@dev",
"nextras/orm": "~4.0",
"pelago/emogrifier": "^7.0",
"tracy/tracy": "~2.6",
"webrouse/n-asset-macro": "^2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"nette/tester": "^2.2.0",
"nextras/mail-panel": "^2.5",
"nextras/orm-phpstan": "^1.0",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/phpstan": "^1.5",
"phpstan/phpstan-nette": "^1.0"
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"scripts": {
"cs": "php-cs-fixer fix --verbose --dry-run --diff --config=utils/php-cs-fixer.php",
"fix": "php-cs-fixer fix --verbose --diff --config=utils/php-cs-fixer.php",
"lint": "parallel-lint app/ tests/ www/",
"phpstan": "phpstan analyse --configuration=utils/phpstan.neon --memory-limit 256M",
"test": "tester tests -C -s"
},
"config": {
"platform": {
"php": "8.1.0"
},
"sort-packages": true
}
}