forked from ezsystems/ezpublish-legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
89 lines (89 loc) · 3.79 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
{
"name": "ezsystems/ezpublish-legacy",
"description": "eZ Publish LegacyStack (4.x)",
"homepage": "http://share.ez.no",
"license": "GPL-2.0-only",
"type": "ezpublish-legacy",
"suggest": {
"php-64bit": "For support of more than 30 languages, a 64bit php installation on all involved prod/dev machines is required",
"ext-curl": "Curl provides better support for interacting with other servers, like downloading packages over SSL",
"ext-gd": "Unless you have ImageMagic installed GD is required for eZ Publish to be able to manipulate images",
"ext-mysqli": "Mysqli is the default database handler used by eZ Publish",
"ext-openssl": "OpenSSL provides cryptographically secure random bytes, which is used in certain parts of the product to greatly improve security",
"ext-pcntl": "If you plan to take advantage of eZ Publish Async publishing feature, then pcntl extension is required",
"ezsystems/ezsi-ls": "ezsi would allow you to use Edge/Server Side Includes of blocks in templates",
"ezsystems/ezscriptmonitor-ls": "ezscriptmonitor makes it possible to better deal with long running bulk operations within eZ Publish",
"ezsystems/ezfind-ls": "ezfind is a Solr based advance search engine for eZ Publish with a lot more features then the built in search",
"ezsystems/eztags-ls": "eztags is a full tagging/taxonomy solution for eZ Publish replacing the simpler builtin ezkeywords datatype"
},
"require": {
"php": "~5.5|~7.0",
"ext-dom": "*",
"ext-libxml": "*",
"ext-mbstring": "*",
"ext-pcre": "*",
"ext-json": "*",
"ext-iconv": "*",
"ext-reflection": "*",
"ext-session": "*",
"ext-spl": "*",
"ext-simplexml": "*",
"ezsystems/ezpublish-legacy-installer": "*",
"ezsystems/ezautosave-ls": "~5.3",
"ezsystems/ezdemo-ls-extension": "~5.4",
"ezsystems/ezflow-ls-extension": "~5.3",
"ezsystems/ezgmaplocation-ls-extension": "~5.3",
"ezsystems/ezie-ls": "~5.3",
"ezsystems/ezmbpaex-ls": "~5.3",
"ezsystems/ezmultiupload-ls": "~5.3",
"ezsystems/ezodf-ls": "~5.3",
"ezsystems/ezprestapiprovider-ls": "~5.3",
"ezsystems/ezstarrating-ls-extension": "~5.3",
"ezsystems/ezwt-ls-extension": "~5.3",
"symfony/polyfill-php73": "^1.9",
"zetacomponents/archive": "~1.5",
"zetacomponents/authentication": "~1.4",
"zetacomponents/authentication-database-tiein": "~1.2",
"zetacomponents/cache": "~1.6",
"zetacomponents/configuration": "~1.4",
"zetacomponents/console-tools": "~1.7",
"zetacomponents/database": "~1.5",
"zetacomponents/debug": "~1.3",
"zetacomponents/event-log": "~1.5",
"zetacomponents/feed": "~1.4",
"zetacomponents/image-conversion": "~1.4",
"zetacomponents/mail": "~1.8",
"zetacomponents/mvc-tools": "~1.2",
"zetacomponents/mvc-authentication-tiein": "~1.1",
"zetacomponents/persistent-object": "~1.8",
"zetacomponents/signal-slot": "~1.2",
"zetacomponents/system-information": "~1.1",
"zetacomponents/webdav": "~1.1"
},
"require-dev": {
"phpunit/phpunit": "3.7.*",
"zetacomponents/php-generator": "~1.1"
},
"autoload": {
"files": ["autoload.php"]
},
"scripts": {
"legacy-scripts": [
"@php bin/php/ezpgenerateautoloads.php"
],
"post-install-cmd": [
"@legacy-scripts"
],
"post-update-cmd": [
"@legacy-scripts"
]
},
"conflict": {
"ezsystems/ezpublish-kernel": "<7.2 || >=2013.4"
},
"extra": {
"branch-alias": {
"dev-master": "2018.06.x-dev"
}
}
}