-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
74 lines (74 loc) · 2.16 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
{
"name": "hexaa/hexaa-backend",
"license": "Apache-2.0",
"type": "project",
"description": "HEXAA virtual organization management software",
"autoload": {
"psr-0": {
"": "src/"
}
},
"require": {
"php": ">=5.3.9",
"ext-curl": "*",
"ext-intl": "*",
"ext-xml": "*",
"ext-pdo_mysql": "*",
"ext-memcached": "*",
"ext-openssl": "*",
"lib-curl": "*",
"symfony/symfony": "~3.4.48",
"doctrine/orm": "*",
"doctrine/doctrine-bundle": "*",
"doctrine/dbal": "*",
"twig/extensions": "~1.3.0",
"symfony/assetic-bundle": "~2.7",
"symfony/swiftmailer-bundle": "~2.3.8",
"symfony/monolog-bundle": "~2.8.2",
"sensio/distribution-bundle": "~5.0.1",
"sensio/framework-extra-bundle": "~3.0.11",
"sensio/generator-bundle": "~3.0.0",
"jms/serializer-bundle": "~3.9.0",
"friendsofsymfony/rest-bundle": "~2.8.6",
"nelmio/api-doc-bundle": "~2.13.0",
"friendsofsymfony/http-cache-bundle": "~2.3.0",
"willdurand/hateoas-bundle": "~2.2.0",
"hautelook/templated-uri-bundle": "~2.0.0",
"willdurand/rest-extra-bundle": "~2.1.0",
"egulias/email-validator": "~1.2.11",
"ramsey/uuid": "~3.0.0",
"nelmio/cors-bundle": "~1.4.0",
"jms/translation-bundle": "~1.4.0",
"moontoast/math": "~1.1.0",
"php-http/guzzle6-adapter": "^1.1"
},
"conflict": {
"symfony/routing": "2.4.1",
"twig/twig": "~2.0"
},
"scripts": {
"pre-install-cmd": [
"bash create_config.sh"
],
"pre-update-cmd": [
"bash create_config.sh"
],
"post-install-cmd": [
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
],
"post-update-cmd": [
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets"
]
},
"config": {
"bin-dir": "bin"
},
"minimum-stability": "stable",
"extra": {
"symfony-app-dir": "app",
"symfony-web-dir": "web"
}
}