-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
76 lines (76 loc) · 2.16 KB
/
composer.json
File metadata and controls
76 lines (76 loc) · 2.16 KB
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
{
"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",
"bjeavons/zxcvbn-php": "^1.4",
"contributte/console": "^0.10.0",
"firebase/php-jwt": "^6.11",
"forxer/gravatar": "^5.0",
"guzzlehttp/guzzle": "^7.10",
"eluceo/ical": "^2.7",
"ext-yaml": ">=2.0",
"ext-json": ">=1.7",
"ext-zip": ">=1.15",
"latte/latte": "^3.0",
"league/commonmark": "^2.7",
"limenet/git-version": "v0.1.6",
"nelmio/alice": "^3.14",
"nette/application": "^3.2",
"nette/bootstrap": "^3.2",
"nette/caching": "^3.4",
"nette/database": "^3.2",
"nette/di": "^3.2",
"nette/finder": "^3.0",
"nette/forms": "^3.2",
"nette/http": "^3.3",
"nette/mail": "^4.0",
"nette/neon": "^3.4",
"nette/robot-loader": "^4.1",
"nette/safe-stream": "^3.0",
"nette/security": "^3.2",
"nette/utils": "^4.0",
"nettrine/dbal": "^0.9",
"nettrine/extensions-atlantic18": "^0.6.0",
"nettrine/migrations": "^0.10",
"nettrine/orm": "^0.9",
"ramsey/uuid-doctrine": "^2.0",
"symfony/process": "^7.3",
"tracy/tracy": "^2.11",
"zircote/swagger-php": "^5.5"
},
"require-dev": {
"mockery/mockery": "@stable",
"mikey179/vfsstream": "@stable",
"nette/tester": "^2.4",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-nette": "^2.0",
"vrana/adminer": "^5.4"
},
"minimum-stability": "dev",
"prefer-stable": true
}