forked from ezsystems/ezpublish-kernel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
72 lines (72 loc) · 2.66 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
{
"name": "ezsystems/ezpublish-kernel",
"description": "Kernel used by ezsystems/ezplatform and derivatives. Provides the Content Repository, its APIs, and the application's Symfony framework integration.",
"homepage": "http://share.ez.no",
"license": "GPL-2.0",
"suggest": {
"php-64bit": "For support of more than 30 languages, a 64bit php installation on all involved prod/dev machines is required"
},
"require": {
"php": "~5.6|~7.0",
"ext-ctype": "*",
"ext-fileinfo": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-PDO": "*",
"ext-SPL": "*",
"ext-xsl": "*",
"zetacomponents/mail": "~1.8",
"symfony/symfony": "^2.7 | ^3.1",
"symfony-cmf/routing": "~1.1",
"qafoo/rmf": "1.0.*",
"kriswallsmith/buzz": ">=0.9",
"tedivm/stash-bundle": "~0.6.1",
"sensio/distribution-bundle": "^3.0.36|^4.0.6|^5.0",
"nelmio/cors-bundle": "^1.3.3",
"hautelook/templated-uri-bundle": "~1.0 | ~2.0",
"pagerfanta/pagerfanta": "~1.0",
"ocramius/proxy-manager": "^1.0|^2.0",
"doctrine/doctrine-bundle": "~1.3",
"liip/imagine-bundle": "~1.0",
"oneup/flysystem-bundle": "^1.0",
"friendsofsymfony/http-cache-bundle": "~1.2|^1.3.8",
"sensio/framework-extra-bundle": "~3.0",
"jms/translation-bundle": "^1.0",
"twig/twig": "~1.27|~2.0"
},
"require-dev": {
"mikey179/vfsStream": "1.1.0",
"phpunit/phpunit": "^4.7.0",
"matthiasnoback/symfony-dependency-injection-test": "0.*",
"mockery/mockery": "~0.9.4",
"symfony/assetic-bundle": "~2.3",
"ezsystems/behatbundle": "^6.1"
},
"replace": {
"ezsystems/ezpublish": "*",
"ezsystems/ezpublish-api": "self.version",
"ezsystems/ezpublish-spi": "self.version"
},
"autoload": {
"psr-4": {
"EzSystems\\PlatformInstallerBundle\\": "eZ/Bundle/PlatformInstallerBundle/src",
"EzSystems\\PlatformBehatBundle\\": "eZ/Bundle/PlatformBehatBundle"
},
"psr-0": {
"eZ": ""
}
},
"config": {
"process-timeout": 3000
},
"extra": {
"_ci_branch-comment_": "Keep ci branch up-to-date with master or branch if on stable. ci is never on github but convention used for ci behat testing!",
"_ezplatform_branch_for_behat_tests_comment_": "ezplatform branch to use to run Behat tests",
"_ezplatform_branch_for_behat_tests": "master",
"branch-alias": {
"dev-master": "6.10.x-dev",
"dev-tmp_ci_branch": "6.10.x-dev"
}
}
}