-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
96 lines (96 loc) · 3.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
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "flux/finques-farnos",
"description": "Finques Farnos Symfony 2 webapp project",
"license": "proprietary",
"type": "project",
"autoload": {
"psr-4": {
"": "src/"
},
"classmap": [
"app/AppKernel.php",
"app/AppCache.php"
]
},
"require": {
"a2lix/translation-form-bundle": "^1.0",
"components/font-awesome": "^4.0",
"components/jquery": "^2.0",
"doctrine/doctrine-bundle": "~1.4",
"doctrine/doctrine-fixtures-bundle": "^2.3",
"doctrine/doctrine-migrations-bundle": "^1.0",
"doctrine/migrations": "^1.0",
"doctrine/orm": "^2.4.8",
"egulias/email-validator": "^1.2",
"excelwebzone/recaptcha-bundle": "^1.4",
"friendsofsymfony/jsrouting-bundle": "1.5.*",
"friendsofsymfony/rest-bundle": "^1.7",
"genemu/form-bundle": "^2.0",
"hautelook/alice-bundle": "^1.0",
"jms/i18n-routing-bundle": "^2.0",
"jms/serializer-bundle": "^1.1",
"jms/translation-bundle": "^1.2",
"incenteev/composer-parameter-handler": "~2.0",
"ircmaxell/password-compat": "~1.0",
"knplabs/knp-paginator-bundle": "^2.5",
"liip/functional-test-bundle": "^1.0",
"liip/imagine-bundle": "^1.8",
"nelmio/api-doc-bundle": "^2.7",
"oh/google-map-form-type-bundle": "^1.0",
"orkestra/pdf-bundle": "1.0.x-dev",
"php": ">=7.1.0",
"presta/sitemap-bundle": "^1.3",
"sensio/distribution-bundle": "~5.0",
"sensio/framework-extra-bundle": "^3.0.2",
"sonata-project/admin-bundle": "3.35.2",
"sonata-project/core-bundle" : "3.12.0",
"sonata-project/doctrine-orm-admin-bundle": "^3.0",
"sonata-project/user-bundle": "^3.0",
"stfalcon/tinymce-bundle": "^1.1",
"stof/doctrine-extensions-bundle": "^1.2",
"symfony/assetic-bundle": "^2.7",
"symfony/monolog-bundle": "~2.4",
"symfony/symfony": "2.8.*",
"symfony/swiftmailer-bundle": "~2.3",
"tecnickcom/tcpdf": "^6.0",
"twbs/bootstrap": "^3.0",
"twig/extensions": "^1.3",
"twig/twig": "^1.3",
"vich/uploader-bundle": "^1.5"
},
"require-dev": {
"cypresslab/gitelephant": "3.0.0",
"cypresslab/gitelephant-bundle": "^0.0.6",
"phpunit/phpunit": "^5.0",
"sensio/generator-bundle": "~3.0"
},
"scripts": {
"post-install-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"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-update-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"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"
]
},
"config": {
"bin-dir": "bin"
},
"extra": {
"symfony-app-dir": "app",
"symfony-web-dir": "web",
"symfony-assets-install": "relative",
"incenteev-parameters": {
"file": "app/config/parameters.yml"
}
}
}