-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
103 lines (100 loc) · 3.71 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
97
98
99
100
101
102
103
{
"name": "bluebear/model",
"license": "MIT",
"type": "project",
"autoload": {
"psr-4": {
"": "src/"
},
"classmap": [
"app/AppKernel.php",
"app/AppCache.php"
]
},
"require": {
"php": ">=7.1",
"ext-intl": "*",
"doctrine/doctrine-bundle": "^1.6",
"doctrine/orm": "^2.5",
"incenteev/composer-parameter-handler": "^2.0",
"sensio/distribution-bundle": "^5.0.19",
"sensio/framework-extra-bundle": "^3.0.2",
"symfony/monolog-bundle": "^3.1.0",
"symfony/polyfill-apcu": "^1.0",
"symfony/swiftmailer-bundle": "^2.3.10",
"symfony/symfony": "3.4.*",
"twig/twig": "^2.0",
"doctrine/doctrine-cache-bundle": "^1.2",
"tinymce/tinymce": "4.5.*",
"sidus/database-maintenance-bundle": "1.0.*",
"sidus/doctrine-debug-bundle": "1.*",
"phpseclib/phpseclib": "^2.0",
"twig/extensions": "1.5.*",
"doctrine/doctrine-migrations-bundle": "^1.2",
"smalot/bootstrap-datetimepicker": "^2.4",
"a1essandro/perlin-noise": "~1.1",
"cleverage/eav-manager": "2.1.*"
},
"require-dev": {
"nelmio/alice": "^3.0@beta",
"sensio/generator-bundle": "~3.0"
},
"repositories": [
{
"type": "package",
"package": {
"name": "smalot/bootstrap-datetimepicker",
"version": "2.4.4",
"dist": {
"url": "https://github.com/smalot/bootstrap-datetimepicker/archive/2.4.4.zip",
"type": "zip"
},
"source": {
"url": "https://github.com/smalot/bootstrap-datetimepicker.git",
"type": "git",
"reference": "tags/2.4.4"
}
}
}
],
"scripts": {
"symfony-scripts": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"cp -r vendor/tinymce/tinymce vendor/stfalcon/tinymce-bundle/Stfalcon/Bundle/TinymceBundle/Resources/public/vendor",
"cp -r vendor/smalot/bootstrap-datetimepicker/* vendor/mopa/bootstrap-bundle/Mopa/Bundle/BootstrapBundle/Resources/public/components/smalot-bootstrap-datetimepicker",
"Sidus\\FileUploadBundle\\Composer\\ScriptHandler::symlinkJQueryFileUpload",
"Mopa\\Bundle\\BootstrapBundle\\Composer\\ScriptHandler::postInstallSymlinkTwitterBootstrapSass",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget",
"bin/console --env=prod doctrine:migrations:migrate --no-interaction"
],
"post-install-cmd": [
"@symfony-scripts"
],
"post-update-cmd": [
"@symfony-scripts"
]
},
"config": {
"component-dir": "web/assets",
"component-baseurl": "/assets",
"preferred-install": {
"cleverage/*": "source",
"sidus/*": "source"
},
"sort-packages": true
},
"extra": {
"symfony-app-dir": "app",
"symfony-bin-dir": "bin",
"symfony-var-dir": "var",
"symfony-web-dir": "web",
"symfony-assets-install": "relative",
"incenteev-parameters": {
"file": "app/config/parameters.yml"
}
}
}