forked from chameleon-system/chameleon-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
166 lines (166 loc) · 6.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
{
"name": "chameleon-system/chameleon-base",
"type": "library",
"description": "The Chameleon System core.",
"license": "MIT",
"authors": [
{
"name": "ESONO AG",
"email": "info@chameleonsystem.com",
"homepage": "https://www.chameleonsystem.com",
"role": "Company"
}
],
"require": {
"chameleon-system/sanitycheck-bundle": "dev-master",
"ckeditor/ckeditor": "4.6.2",
"doctrine/dbal": "~2.5",
"ext-curl": "*",
"ext-tidy": "*",
"ext-pdo_mysql": "*",
"ezyang/htmlpurifier": "~4.6",
"kartik-v/strength-meter": "~1.1.0",
"natxet/CssMin": "~3.0.0",
"php": "^7.1",
"phpmailer/phpmailer": "~6.0",
"sensio/distribution-bundle": "^5.0.19",
"symfony/monolog-bundle": "^3.1.0",
"symfony/polyfill-apcu": "^1.0",
"symfony/symfony": "~3.4.0",
"symfony-cmf/routing-bundle": "~2.1.0",
"tedivm/jshrink": "~1.0",
"twig/twig": "^2.0"
},
"require-dev": {
"chameleon-system/code-style-config": "dev-master@dev",
"chameleon-system/sanitycheck": "dev-master",
"phpunit/phpunit": "~7.0"
},
"autoload": {
"classmap": [
"src/CoreBundle/FrontController/chameleon.php",
"src/CoreBundle/private",
"src/AtomicLockBundle/Cronjobs",
"src/AtomicLockBundle/objects",
"src/CmsActionPluginBundle/objects",
"src/CmsCaptchaBundle/objects",
"src/CmsChangeLogBundle/src",
"src/CmsClassManagerBundle",
"src/CmsCoreLogBundle/interfaces",
"src/CmsCoreLogBundle/monolog",
"src/CmsCoreLogBundle/objects",
"src/CmsEventBundle/objects",
"src/CmsFileManagerBundle/interfaces",
"src/CmsFileManagerBundle/objects",
"src/CmsInterfaceManagerBundle/objects",
"src/CmsNavigationBundle/mapper",
"src/CmsNavigationBundle/objects",
"src/CmsResultCacheBundle/objects",
"src/CmsStringUtilitiesBundle/Interfaces",
"src/CmsStringUtilitiesBundle/objects",
"src/CmsTextBlockBundle/mappers",
"src/CmsTextBlockBundle/objects",
"src/CmsTextBlockBundle/TCMSPkgCmsTextBlockTCMSTextField.class.php",
"src/CmsTextFieldBundle/mapper",
"src/CmsTextFieldBundle/objects",
"src/CommentBundle/objects",
"src/Csv2SqlBundle/objects",
"src/ExternalTrackerBundle/objects",
"src/ExternalTrackerBundle/pkgArticle",
"src/ExternalTrackerBundle/pkgExtranet",
"src/ExternalTrackerBundle/pkgSearch",
"src/ExternalTrackerBundle/pkgShop",
"src/ExternalTrackerGoogleAnalyticsBundle/objects",
"src/ExtranetBundle/mapper",
"src/ExtranetBundle/objects",
"src/GenericTableExportBundle/objects",
"src/MultiModuleBundle/mappers",
"src/MultiModuleBundle/objects",
"src/NewsletterBundle/mappers",
"src/NewsletterBundle/objects",
"src/PkgCoreBundle/cmsModules",
"src/PkgCoreBundle/exceptions",
"src/PkgCoreBundle/interfaces",
"src/PkgCoreBundle/mappers",
"src/PkgCoreBundle/objects",
"src/RevisionManagementBundle/objects",
"src/SnippetRendererBundle/Filter",
"src/SnippetRendererBundle/interfaces",
"src/SnippetRendererBundle/objects",
"src/TrackViewsBundle/objects",
"src/TrackViewsBundle/pkgShop",
"src/UrlAliasBundle/objects",
"src/ViewRendererBundle/mappers",
"src/ViewRendererBundle/objects"
],
"psr-4": {
"ChameleonSystem\\": "src",
"esono\\pkgCmsCache\\": "src/CmsCacheBundle/src/esono/pkgCmsCache",
"esono\\pkgCmsCounter\\": "src/CmsCounterBundle/src/esono/pkgCmsCounter",
"esono\\pkgCmsRouting\\": "src/CmsRoutingBundle/src/esono/pkgCmsRouting",
"esono\\pkgCoreValidatorConstraints\\": "src/CoreValidatorConstraintsBundle/src/esono/pkgCoreValidatorConstraints"
},
"exclude-from-classmap": [
"/tests/",
"/Tests/"
]
},
"autoload-dev": {
"classmap": [
"src/AutoclassesBundle/Tests",
"src/ViewRendererBundle/Tests"
]
},
"bin": [
"src/CoreBundle/bin/chameleon",
"src/CoreBundle/bin/console"
],
"config": {
"bin-dir": "vendor/bin",
"sort-packages": true
},
"replace": {
"chameleon-system/autoclasses-bundle": "*",
"chameleon-system/cookie-consent-bundle": "*",
"chameleon-system/core": "*",
"chameleon-system/database-migration-bundle": "*",
"chameleon-system/debug-bundle": "*",
"chameleon-system/distribution-bundle": "*",
"chameleon-system/javascript-minification-bundle": "*",
"chameleon-system/minifier-js-jshrink-bundle": "*",
"chameleon-system/pkgatomiclock": "*",
"chameleon-system/pkgcmsactionplugin": "*",
"chameleon-system/pkgcmscache": "*",
"chameleon-system/pkgcmscaptcha": "*",
"chameleon-system/pkgcmschangelog": "*",
"chameleon-system/pkgcmsclassmanager": "*",
"chameleon-system/pkgcmscorelog": "*",
"chameleon-system/pkgcmscounter": "*",
"chameleon-system/pkgcmsevent": "*",
"chameleon-system/pkgcmsfilemanager": "*",
"chameleon-system/pkgcmsinterfacemanager": "*",
"chameleon-system/pkgcmsnavigation": "*",
"chameleon-system/pkgcmsresultcache": "*",
"chameleon-system/pkgcmsrouting": "*",
"chameleon-system/pkgcmsstringutilities": "*",
"chameleon-system/pkgcmstextblock": "*",
"chameleon-system/pkgcmstextfield": "*",
"chameleon-system/pkgcomment": "*",
"chameleon-system/pkgcore": "*",
"chameleon-system/pkgcorevalidatorconstraints": "*",
"chameleon-system/pkgcsv2sql": "*",
"chameleon-system/pkgexternaltracker": "*",
"chameleon-system/pkgexternaltrackergoogleanalytics": "*",
"chameleon-system/pkgextranet": "*",
"chameleon-system/pkggenerictableexport": "*",
"chameleon-system/pkgmultimodule": "*",
"chameleon-system/pkgnewsletter": "*",
"chameleon-system/pkgrevisionmanagement": "*",
"chameleon-system/pkgsnippetrenderer": "*",
"chameleon-system/pkgtrackviews": "*",
"chameleon-system/pkgurlalias": "*",
"chameleon-system/pkgviewrenderer": "*",
"chameleon-system/twig-debug-bundle": "*",
"chameleon-system/update-counter-migration-bundle": "*"
}
}