forked from DOMjudge/domjudge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
132 lines (132 loc) · 3.26 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "domjudge/domjudge",
"description": "DOMjudge Programming Contest Control System",
"homepage": "https://www.domjudge.org",
"license": "GPL-2.0+",
"repositories": [
{
"type": "package",
"package": {
"name": "fortawesome/font-awesome",
"version": "5.9.0",
"dist": {
"url": "https://github.com/FortAwesome/Font-Awesome/releases/download/5.9.0/fontawesome-free-5.9.0-web.zip",
"type": "zip"
}
}
},
{
"type": "package",
"package": {
"name": "angel-vladov/select2-bootstrap-theme",
"version": "0.2.0-beta.3",
"dist": {
"url": "https://github.com/angel-vladov/select2-bootstrap-theme/archive/0.2.0-beta.3.zip",
"type": "zip"
}
}
}
],
"require": {
"php": "^7.1.3",
"ext-ctype": "*",
"ext-curl": "*",
"ext-gd": "*",
"ext-iconv": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-mysqli": "*",
"ext-pcntl": "*",
"ext-zip": "*",
"angel-vladov/select2-bootstrap-theme": "0.2.0-beta.3",
"components/jquery": "^3.3",
"datatables/datatables": "^1.10",
"doctrine/doctrine-bundle": "^1.11",
"doctrine/doctrine-cache-bundle": "^1.3",
"doctrine/doctrine-fixtures-bundle": "^3.2",
"doctrine/doctrine-migrations-bundle": "^2.0",
"doctrine/orm": "^2.6",
"fortawesome/font-awesome": "5.*",
"friendsofsymfony/rest-bundle": "^2.5",
"ircmaxell/password-compat": "*",
"jms/serializer-bundle": "^3.4",
"mbostock/d3": "^3.5",
"nelmio/api-doc-bundle": "^3.4",
"novus/nvd3": "^1.8",
"select2/select2": "4.*",
"sensio/framework-extra-bundle": "^5.4.0",
"symfony/asset": "4.3.*",
"symfony/browser-kit": "4.3.*",
"symfony/console": "4.3.*",
"symfony/css-selector": "4.3.*",
"symfony/dotenv": "4.3.*",
"symfony/expression-language": "4.3.*",
"symfony/flex": "^1.4",
"symfony/form": "4.3.*",
"symfony/framework-bundle": "4.3.*",
"symfony/http-client": "4.3.*",
"symfony/monolog-bundle": "^3.4.0",
"symfony/profiler-pack": "^1.0",
"symfony/security-bundle": "4.3.*",
"symfony/security-csrf": "4.3.*",
"symfony/twig-bundle": "^4.3",
"symfony/validator": "4.3.*",
"symfony/yaml": "4.3.*",
"twbs/bootstrap": "^4.3.0",
"twig/extensions": "^1.5",
"twig/twig": "^2.11"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"symfony/debug-bundle": "4.3.*",
"symfony/maker-bundle": "^1.13",
"symfony/phpunit-bridge": "^4.3",
"symfony/var-dumper": "4.3.*"
},
"autoload": {
"psr-4": {
"App\\": "webapp/src/"
}
},
"autoload-dev": {},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"vendor-dir": "lib/vendor",
"component-dir": "lib/vendor/components"
},
"replace": {
"paragonie/random_compat": "2.*",
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php71": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php56": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"package-versions-dump": "PackageVersions\\Installer::dumpVersionsClass"
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"root-dir": "webapp/",
"allow-contrib": true,
"require": "4.3.*"
}
}
}