forked from fmfi-svt/anketa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
83 lines (82 loc) · 2.83 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
{
"name": "svt/fmfi-anketa",
"licence": "GPL-3.0+",
"description": "Studentska anketa",
"autoload": {
"psr-0": { "": "src/" }
},
"require": {
"php": ">=5.3.3",
"symfony/symfony": "2.3.*",
"doctrine/orm": ">=2.2.3,<2.4-dev",
"doctrine/doctrine-bundle": "1.2.*",
"twig/extensions": "1.0.*",
"symfony/assetic-bundle": "2.3.*",
"symfony/swiftmailer-bundle": "2.3.*",
"symfony/monolog-bundle": "2.3.*",
"sensio/distribution-bundle": "2.3.*",
"sensio/framework-extra-bundle": "2.3.*",
"sensio/generator-bundle": "2.3.*",
"jms/i18n-routing-bundle": "1.1.*",
"doctrine/doctrine-fixtures-bundle": "2.1.*",
"svt/votr": "@dev",
"svt/rozvrhxml": "@dev",
"svt/cosign-bundle": "@dev",
"ext-json": "*"
},
"require-dev": {
"svt/linters": "@dev"
},
"repositories": [
{
"type": "package",
"package": {
"name": "svt/votr",
"version": "20190924-dev",
"description": "Next generation AIS frontend",
"license": "Apache",
"dist": {
"url": "https://github.com/fmfi-svt/votr/archive/3e896870cbec94ce274a1ab44ec7a1265c3e28ec.zip",
"type": "zip"
}
}
},
{
"type": "git",
"url": "https://github.com/fmfi-svt/rozvrh-xml.git"
},
{
"type": "git",
"url": "https://github.com/fmfi-svt/linters.git"
},
{
"type": "git",
"url": "https://github.com/fmfi-svt/cosign-bundle.git"
}
],
"scripts": {
"post-install-cmd": [
"./scripts/votr_install.sh",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
],
"post-update-cmd": [
"./scripts/votr_install.sh",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
]
},
"minimum-stability": "alpha",
"extra": {
"symfony-assets-install": "relative",
"symfony-app-dir": "app",
"symfony-web-dir": "web"
},
"config": {
"process-timeout": 0
}
}