-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
77 lines (77 loc) · 2.2 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
{
"name": "recodex/api",
"description": "Web REST API of ReCodEx Code Evaluator.",
"homepage": "https://github.com/ReCodEx/api",
"type": "project",
"license": [
"MIT"
],
"authors": [
{
"name": "ReCodEx Team",
"homepage": "https://github.com/ReCodEx/api/graphs/contributors"
}
],
"scripts": {
"post-install-cmd": [
"composer dump-autoload --optimize --classmap-authoritative"
]
},
"autoload": {
"classmap": ["app/Bootstrap.php"]
},
"config": {
"platform": {
"php": "8.2.0"
}
},
"require": {
"php": ">=8.2",
"ext-yaml": ">=2.0",
"ext-json": ">=1.7",
"ext-zip": ">=1.15",
"nette/application": "^3.1",
"nette/bootstrap": "^3.1",
"nette/caching": "^3.1",
"nette/database": "^3.1",
"nette/di": "^3.0",
"nette/finder": "^3.0",
"nette/forms": "^3.1",
"nette/http": "^3.1",
"nette/mail": "^4.0",
"nette/robot-loader": "^4.0",
"nette/safe-stream": "^3.0",
"nette/security": "^3.1",
"nette/utils": "^4.0",
"nette/neon": "^3.2",
"latte/latte": "^3.0",
"tracy/tracy": "^2.8",
"dg/adminer-custom": "^2.0",
"contributte/console": "^0.10.0",
"nettrine/orm": "^0.8.3",
"nettrine/dbal": "^0.8.0",
"nettrine/migrations": "^0.9.0",
"nettrine/extensions-atlantic18": "^0.6.0",
"guzzlehttp/guzzle": "~7.4",
"symfony/process": "^7.1",
"firebase/php-jwt": "^6.3",
"forxer/gravatar": "^5.0",
"mrdm-nl/ldap": "^1.1",
"bjeavons/zxcvbn-php": "^1.2",
"limenet/git-version": "v0.1.6",
"nelmio/alice": "^3.8",
"ramsey/uuid-doctrine": "^2.0",
"eluceo/ical": "^2.7",
"league/commonmark": "^2.3",
"zircote/swagger-php": "^4.10"
},
"require-dev": {
"mockery/mockery": "@stable",
"mikey179/vfsstream": "@stable",
"nette/tester": "^2.4",
"phpstan/phpstan": "^1.11",
"phpstan/phpstan-nette": "^1.3"
},
"minimum-stability": "dev",
"prefer-stable": true
}