forked from pimcore/pimcore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
123 lines (123 loc) · 3.52 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
{
"name": "pimcore/pimcore",
"type": "library",
"description": "Content & Product Management Framework (CMS/PIM/E-Commerce)",
"keywords": [
"CMS",
"PIM",
"DAM",
"E-Commerce",
"RAD",
"Product Information Management"
],
"homepage": "http://www.pimcore.org/",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "pimcore Team",
"email": "[email protected]",
"homepage": "http://www.pimcore.org/",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/pimcore/pimcore/issues",
"wiki": "https://pimcore.com/docs/5.0.x/index.html",
"source": "https://github.com/pimcore/pimcore",
"forum": "https://groups.google.com/forum/#!forum/pimcore",
"docs": "https://pimcore.com/docs/5.0.x/index.html"
},
"require": {
"php": ">=7.1",
"ext-SimpleXML": "*",
"ext-dom": "*",
"ext-exif": "*",
"ext-fileinfo": "*",
"ext-gd": "*",
"ext-intl": "*",
"ext-iconv": "*",
"ext-mbstring": "*",
"ext-mysqli": "*",
"ext-pdo_mysql": "*",
"ext-zip": "*",
"ext-zlib": "*",
"pimcore/core-version": "5.5.3",
"amnuts/opcache-gui": "~2",
"cache/tag-interop": "^1",
"colinmollenhour/credis": "^1.10.0",
"composer/ca-bundle": "^1",
"defuse/php-encryption": "~2",
"doctrine/annotations": "^1.6.0",
"doctrine/collections": "^1.5.0",
"doctrine/common": "^2.9.0",
"doctrine/dbal": "^2.8.0",
"doctrine/doctrine-bundle": "^1.9.1",
"doctrine/doctrine-migrations-bundle": "^1.3.1",
"doctrine/inflector": "^1.3.0",
"egulias/email-validator": "^2.1.5",
"endroid/qr-code": "^3.4.4",
"geoip2/geoip2": "~2",
"google/apiclient": "^2.0",
"guzzlehttp/guzzle": "~6.0",
"hybridauth/hybridauth": "~2",
"lcobucci/jwt": "^3.2",
"league/csv": "^9.1",
"linfo/linfo": "~4",
"mjaschen/phpgeo": "^2.0",
"mpratt/embera": "~1",
"myclabs/deep-copy": "~1.3",
"myclabs/php-enum": "^1.5",
"neitanod/forceutf8": "~2",
"nesbot/carbon": "~1",
"ocramius/package-versions": "^1.2",
"pear/net_url2": "~2.2",
"phive/twig-extensions-deferred": "^2.0",
"piwik/device-detector": "^3.9",
"presta/sitemap-bundle": "^1.5",
"ramsey/uuid": "~3",
"sabre/dav": "~3.2",
"sensio/distribution-bundle": "^5.0.19",
"sensio/framework-extra-bundle": "^3.0.2",
"sensio/generator-bundle": "^3.0",
"sensiolabs/ansi-to-html": "^1.1",
"symfony-cmf/routing-bundle": "^2.0",
"symfony/monolog-bundle": "^3.1.0",
"symfony/swiftmailer-bundle": "^3.2.2",
"symfony/symfony": "3.4.*",
"tijsverkoyen/css-to-inline-styles": "^2.2.1",
"twig/extensions": "^1.5",
"twig/twig": "^2.0",
"umpirsky/country-list": "2.0.4",
"vrana/adminer": "~4.6",
"vrana/jush": "~2.0.2",
"zendframework/zend-paginator": "^2.7",
"zendframework/zend-servicemanager": "^3.2",
"scheb/two-factor-bundle": "^3.8"
},
"require-dev": {
"cache/integration-tests": "^0.16.0",
"codeception/codeception": "~2.4.5"
},
"suggest": {
"ext-curl": "*",
"ext-imagick": "*",
"ext-redis": "*",
"klarna/checkout": "1.2.0",
"elasticsearch/elasticsearch": "2.0.0"
},
"autoload": {
"psr-4": {
"Pimcore\\Model\\": "models",
"Pimcore\\": "lib",
"Pimcore\\Bundle\\": "bundles"
},
"classmap": [
"lib/Pimcore.php"
],
"exclude-from-classmap": [
"lib/compatibility-stubs.php",
"lib/Pimcore/Bundle/EcommerceFrameworkBundle/config/namespace_compatibility.php"
]
},
"bin": ["bin/pimcore-install"]
}