-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
95 lines (95 loc) · 3.43 KB
/
composer.json
File metadata and controls
95 lines (95 loc) · 3.43 KB
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
{
"name": "mtm-aarhus/aaplus",
"license": "MPL-2.0",
"type": "project",
"description": "Aaplus",
"autoload": {
"psr-0": { "": "src/", "SymfonyStandard": "app/" }
},
"require": {
"php": ">=5.6",
"symfony/symfony": "2.8.*",
"doctrine/orm": "2.5.*",
"doctrine/dbal": "2.5.*",
"doctrine/doctrine-fixtures-bundle": "2.2.*",
"doctrine/doctrine-bundle": "~1.2",
"twig/extensions": "^1.3",
"symfony/assetic-bundle": "~2.3",
"symfony/swiftmailer-bundle": "~2.3",
"symfony/monolog-bundle": "~2.4",
"sensio/distribution-bundle": "~3.0,>=3.0.12",
"sensio/framework-extra-bundle": "~3.0,>=3.0.2",
"incenteev/composer-parameter-handler": "~2.0",
"ddeboer/data-import": "@stable",
"ddeboer/data-import-bundle": "~0.1",
"braincrafted/bootstrap-bundle": "~2.0",
"knplabs/knp-paginator-bundle": "2.5.*",
"twbs/bootstrap": "3.3.*",
"yavin/symfony-init-controller": "^0.4",
"whiteoctober/breadcrumbs-bundle": "~1.2.2",
"friendsofsymfony/user-bundle": "~2.0@dev",
"simplethings/entity-audit-bundle": "dev-aaplus",
"stof/doctrine-extensions-bundle": "~1.1",
"jms/serializer-bundle": "~0.13",
"phpoffice/phpexcel": "~1.8",
"rollerworks/password-strength-bundle": "^1.3",
"fortawesome/font-awesome": "^4.4",
"knplabs/knp-snappy-bundle": "dev-master",
"fresh/doctrine-enum-bundle": "^4.6.5",
"doctrine/doctrine-migrations-bundle": "^1.3",
"lexik/form-filter-bundle": "~4.0",
"beberlei/DoctrineExtensions": "^1.0",
"mewesk/twig-excel-bundle": "^2.0",
"symfony/property-access": "^3.1",
"box/spout": "^2.7",
"sensio/generator-bundle": "~2.3",
"itk-dev/database-bundle": "^1.2",
"league/csv": "^8.2",
"trsteel/ckeditor-bundle": "~1.11",
"helios-ag/fm-elfinder-bundle": "~6"
},
"require-dev": {
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/mtm-aarhus/entity-audit-bundle"
}
],
"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"
],
"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"
]
},
"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"
},
"branch-alias": {
"dev-master": "2.6-dev"
}
}
}