-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
executable file
·101 lines (101 loc) · 2.61 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
{
"name": "pimcore/pimcore",
"type": "project",
"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+",
"authors": [
{
"name": "pimcore Team",
"email": "info@pimcore.com",
"homepage": "http://www.pimcore.org/",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/pimcore/pimcore/issues",
"wiki": "https://www.pimcore.org/wiki/",
"source": "https://github.com/pimcore/pimcore",
"forum": "https://groups.google.com/forum/#!forum/pimcore",
"docs": "https://www.pimcore.org/wiki/"
},
"config": {
"optimize-autoloader": true
},
"require": {
"php": ">=5.6.0",
"ext-iconv": "*",
"ext-dom": "*",
"ext-SimpleXML": "*",
"ext-gd": "*",
"ext-exif": "*",
"ext-mbstring": "*",
"ext-fileinfo": "*",
"ext-zip": "*",
"ext-zlib": "*",
"ext-bz2": "*",
"ext-openssl": "*",
"pimcore/core-version": "4.4.0",
"zendframework/zendframework1": "~1.12",
"symfony/console": "~3",
"symfony/finder": "~3",
"symfony/process": "~3",
"symfony/var-dumper": "~3",
"symfony/css-selector": "~3",
"symfony/event-dispatcher": "~3",
"filp/whoops": "~2",
"tijsverkoyen/css-to-inline-styles": "~1.5",
"hybridauth/hybridauth": "~2",
"google/apiclient": "~1",
"oyejorge/less.php": "~1.7",
"geoip2/geoip2": "~2",
"psr/log": "*",
"monolog/monolog": "~1",
"sabre/dav": "~3.1",
"pear/net_url2": "~2.2",
"ramsey/uuid": "~3",
"colinmollenhour/credis": "~1",
"endroid/qrcode": "~1.5",
"mpratt/embera": "~1",
"defuse/php-encryption": "~2",
"nesbot/carbon": "~1",
"php-di/php-di": "~5",
"linfo/linfo": "~3",
"amnuts/opcache-gui": "~2",
"vrana/adminer": "~4.2",
"egulias/email-validator": "*",
"myclabs/deep-copy": "*",
"neitanod/forceutf8": "~2"
},
"require-dev": {
"phpunit/phpunit": "*"
},
"suggest": {
"ext-curl": "*",
"ext-mysqli": "*",
"ext-pdo_mysql": "*",
"ext-imagick": "*",
"ext-redis": "*",
"ext-memcache": "*"
},
"autoload": {
"psr-4": {
"Pimcore\\Model\\Object\\": "website/var/classes/Object",
"Pimcore\\Model\\": "pimcore/models",
"Pimcore\\": "pimcore/lib/Pimcore"
}
},
"scripts": {
"post-create-project-cmd": "Pimcore\\Composer::postCreateProject",
"post-install-cmd": "Pimcore\\Composer::postInstall",
"post-update-cmd": "Pimcore\\Composer::postUpdate"
}
}