-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·89 lines (89 loc) · 2.84 KB
/
Copy pathcomposer.json
File metadata and controls
executable file
·89 lines (89 loc) · 2.84 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
{
"name": "AEES/webapp",
"license": "AGPL-3.0-or-later",
"type": "project",
"autoload": {
"psr-4": {
"": "src/"
},
"classmap": [
"app/AppKernel.php",
"app/AppCache.php"
]
},
"require": {
"php": ">=7.0",
"symfony/symfony": "^3.4.3",
"doctrine/orm": "^2.6",
"doctrine/doctrine-bundle": "^1.8",
"symfony/swiftmailer-bundle": "^2.6.4",
"symfony/monolog-bundle": "^3.1",
"sensio/distribution-bundle": "^5.0",
"sensio/framework-extra-bundle": "^5.1",
"incenteev/composer-parameter-handler": "^2.1",
"sonata-project/admin-bundle": "^3.30",
"sonata-project/doctrine-orm-admin-bundle": "^3.3",
"sonata-project/user-bundle": "^4.0",
"friendsofsymfony/rest-bundle": "^2.3",
"nelmio/api-doc-bundle": "^2.13",
"symfony-cmf/routing-bundle": "^2.0",
"sonata-project/page-bundle": "^3.7",
"sonata-project/datagrid-bundle": "^2.3",
"sonata-project/seo-bundle": "2.4",
"sonata-project/cache-bundle": "^2.4",
"sonata-project/notification-bundle": "^3.3",
"php-amqplib/php-amqplib": "^2.7",
"liip/monitor-bundle": "^2.6",
"symfony/assetic-bundle": "^2.8",
"sonata-project/formatter-bundle": "^3.4",
"sonata-project/media-bundle": "^3.10",
"sonata-project/classification-bundle": "^3.5",
"sonata-project/intl-bundle": "^2.4",
"sonata-project/news-bundle": "^3.2",
"sonata-project/core-bundle": "3.8",
"sonata-project/block-bundle": "^3.9",
"symfony/twig-bundle": "^3.4",
"swiftmailer/swiftmailer": "5.4.6",
"sonata-project/translation-bundle": "^2.2",
"stof/doctrine-extensions-bundle": "^1.3",
"leafo/scssphp": "^0.6.7",
"patchwork/jsqueeze": "^2.0",
"twbs/bootstrap": "v4.0.0-beta",
"simplethings/entity-audit-bundle": "^1.0",
"phpoffice/phpspreadsheet": "^1.2"
},
"require-dev": {
"sensio/generator-bundle": "~3.1",
"symfony/phpunit-bridge": "^4.0"
},
"scripts": {
"symfony-scripts": [
"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-install-cmd": [
"@symfony-scripts"
],
"post-update-cmd": [
"@symfony-scripts"
]
},
"config": {
"bin-dir": "bin",
"platform": {
"php": "7.1.3"
}
},
"extra": {
"symfony-app-dir": "app",
"symfony-web-dir": "web",
"symfony-assets-install": "relative",
"incenteev-parameters": {
"file": "app/config/parameters.yml"
}
}
}