forked from ezsystems/ezpublish-kernel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
84 lines (84 loc) · 2.97 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
{
"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": "https://ezplatform.com",
"license": "GPL-2.0-only",
"suggest": {
"php-64bit": "For support of more than 30 languages, a 64bit php installation on all involved prod/dev machines is required"
},
"require": {
"php": "^7.1",
"ext-ctype": "*",
"ext-fileinfo": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-PDO": "*",
"ext-SPL": "*",
"ext-xsl": "*",
"ext-curl": "*",
"symfony/symfony": "^3.4.17",
"symfony-cmf/routing": "^2.1",
"kriswallsmith/buzz": "^0.17.2",
"sensio/distribution-bundle": "^5.0.22",
"nelmio/cors-bundle": "^1.5.0",
"hautelook/templated-uri-bundle": "^2.1",
"pagerfanta/pagerfanta": "^2.0",
"ocramius/proxy-manager": "^2.1",
"doctrine/doctrine-bundle": "~1.6",
"liip/imagine-bundle": "^2.1",
"oneup/flysystem-bundle": "^3.0",
"friendsofsymfony/http-cache-bundle": "^1.3.13 | ^2.5.1",
"sensio/framework-extra-bundle": "^5.2",
"jms/translation-bundle": "^1.4",
"twig/twig": "^2.5"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "~2.7.5",
"phpunit/phpunit": "^7.0",
"matthiasnoback/symfony-dependency-injection-test": "~3.0",
"symfony/assetic-bundle": "~2.8.2",
"ezsystems/behatbundle": "^6.4"
},
"conflict": {
"symfony/symfony": "3.4.7",
"doctrine/dbal": "2.7.0",
"ezsystems/ezpublish-legacy": "<2018.06"
},
"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,
"platform": {
"php": "7.1"
}
},
"scripts": {
"fix-cs": "@php ./vendor/bin/php-cs-fixer fix -v --show-progress=estimating"
},
"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": "7.4.x-dev",
"dev-tmp_ci_branch": "7.4.x-dev"
},
"thanks": {
"name": "ezsystems/ezplatform",
"url": "https://github.com/ezsystems/ezplatform"
}
}
}