forked from DOMjudge/domjudge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
69 lines (69 loc) · 2.07 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
{
"name": "domjudge/domjudge",
"description": "DOMjudge Programming Contest Control System",
"homepage": "https://www.domjudge.org",
"license": "GPL-2.0+",
"require": {
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-mysqli": "*",
"jumbojett/openid-connect-php": "0.1.*",
"mustangostang/spyc": "0.5.*",
"php": ">= 7.0",
"ircmaxell/password-compat": "*",
"doctrine/doctrine-bundle": "^1.6",
"doctrine/doctrine-cache-bundle": "^1.2",
"doctrine/orm": "^2.5",
"sensio/distribution-bundle": "^5.0",
"sensio/framework-extra-bundle": "^3.0.2",
"symfony/monolog-bundle": "^3.0.2",
"symfony/swiftmailer-bundle": "^2.3.10",
"symfony/symfony": "3.2.*",
"twig/twig": "2.3.*",
"friendsofsymfony/rest-bundle": "^2.2",
"jms/serializer-bundle": "^2.0",
"twbs/bootstrap": "^4.0.0",
"mbostock/d3": "^3.5"
},
"require-dev": {
"sensio/generator-bundle": "^3.0",
"phpunit/phpunit": "^6.3"
},
"autoload": {
"psr-4": { "": "webapp/src/" },
"classmap": [ "webapp/app/AppKernel.php", "webapp/app/AppCache.php" ]
},
"autoload-dev": {
"files": [ "lib/vendor/symfony/symfony/src/Symfony/Component/VarDumper/Resources/functions/dump.php" ]
},
"config": {
"vendor-dir": "lib/vendor"
},
"scripts": {
"symfony-scripts": [
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget"
],
"post-install-cmd": [
"@symfony-scripts"
],
"post-update-cmd": [
"@symfony-scripts"
]
},
"extra": {
"symfony-app-dir": "webapp/app",
"symfony-bin-dir": "webapp/bin",
"symfony-var-dir": "webapp/var",
"symfony-web-dir": "webapp/web",
"symfony-tests-dir": "webapp/tests",
"symfony-assets-install": "relative",
"branch-alias": {
"dev-master": "3.2-dev"
}
}
}