-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
92 lines (92 loc) · 3.81 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
{
"name": "root/Toolkit",
"license": "proprietary",
"type": "project",
"autoload": {
"psr-4": {
"": "src/",
"SymfonyStandard\\": "app/SymfonyStandard/"
}
},
"minimum-stability": "stable",
"require": {
"php": ">=5.3.9",
"symfony/symfony": "2.7.*",
"doctrine/orm": "~2.2,>=2.2.3",
"doctrine/dbal": "~2.5",
"doctrine/doctrine-bundle": "~1.4",
"doctrine/data-fixtures": "~1.0",
"doctrine/doctrine-cache-bundle": "~1.0",
"symfony/assetic-bundle": "~2.3",
"symfony/swiftmailer-bundle": "~2.3",
"symfony/monolog-bundle": "~2.4",
"sensio/distribution-bundle": "~4.0",
"sensio/framework-extra-bundle": "~3.0,>=3.0.2",
"incenteev/composer-parameter-handler": "~2.0",
"twig/extensions": "~1.0",
"jackalope/jackalope-doctrine-dbal": "1.*",
"nelmio/alice": "~1.0",
"doctrine/doctrine-fixtures-bundle": "^2.2",
"friendsofsymfony/user-bundle": "~2.0@dev",
"knplabs/knp-menu-bundle": "~2",
"components/jquery": "1.11.1",
"symfony/filesystem": "^2.7",
"misd/phone-number-bundle": "^1.0",
"doctrine/migrations": "1.0.*@dev",
"doctrine/doctrine-migrations-bundle": "1.0.*",
"stof/doctrine-extensions-bundle": "~1.1@dev",
"webfactory/exceptions-bundle": "@stable",
"apy/datagrid-bundle": "^2.2",
"genemu/form-bundle": "2.2.*",
"oneup/uploader-bundle": "^1.3",
"myclabs/deep-copy": "1.3.1",
"trsteel/ckeditor-bundle": "~1.8",
"jms/serializer-bundle": "^1.0",
"liip/imagine-bundle": "^1.3",
"helios-ag/fm-elfinder-bundle": "~5",
"eo/honeypot-bundle": "^1.0",
"knplabs/knp-snappy-bundle": "^1.3",
"evheniy/gtm-bundle": "1.*",
"ras/flash-alert-bundle": "^2.1",
"ambta/doctrine-encrypt-bundle": "2.4.*"
},
"require-dev": {
"liip/functional-test-bundle": "~1.0",
"sensio/generator-bundle": "~2.3"
},
"scripts": {
"post-root-package-install": [
"SymfonyStandard\\Composer::hookRootPackageInstall"
],
"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::removeSymfonyStandardFiles",
"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::removeSymfonyStandardFiles",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget"
]
},
"config": {
"bin-dir": "bin",
"component-dir": "web/assets"
},
"extra": {
"symfony-app-dir": "app",
"symfony-web-dir": "web",
"symfony-assets-install": "relative",
"incenteev-parameters": {
"file": "app/config/parameters.yml"
}
}
}