forked from ezsystems/ezpublish-kernel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
113 lines (113 loc) · 4.1 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
{
"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.3",
"ext-ctype": "*",
"ext-fileinfo": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-PDO": "*",
"ext-SPL": "*",
"ext-xsl": "*",
"ext-curl": "*",
"ext-dom": "*",
"symfony/cache": "^4.3",
"symfony/http-foundation": "^4.3",
"symfony/framework-bundle": "^4.3",
"symfony/process": "^4.3",
"symfony/dependency-injection": "^4.3",
"symfony/event-dispatcher": "^4.3",
"symfony/translation": "^4.3",
"symfony/yaml": "^4.3",
"symfony/security": "^4.3",
"symfony/serializer": "^4.3",
"symfony/http-kernel": "^4.3",
"symfony/console": "^4.3",
"symfony/expression-language": "^4.3",
"symfony/validator": "^4.3",
"ezsystems/doctrine-dbal-schema": "^1.0@dev",
"symfony-cmf/routing": "^2.1",
"kriswallsmith/buzz": "^1.0",
"nelmio/cors-bundle": "^1.5.0",
"hautelook/templated-uri-bundle": "^3.0",
"pagerfanta/pagerfanta": "^2.0",
"ocramius/proxy-manager": "^2.1",
"doctrine/doctrine-bundle": "^1.11",
"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.10",
"twig/extensions": "^1.5.4",
"friendsofsymfony/jsrouting-bundle": "^2.3.0",
"psr/event-dispatcher": "^1.0"
},
"require-dev": {
"brianium/paratest": "^3.0",
"jenner/simple_fork": "^1.2",
"friendsofphp/php-cs-fixer": "~2.15.1",
"phpunit/phpunit": "^8.2",
"matthiasnoback/symfony-dependency-injection-test": "^4.0",
"ezsystems/behatbundle": "^7.0@dev"
},
"conflict": {
"doctrine/dbal": "2.7.0",
"ezsystems/ezpublish-legacy": "<2019.03",
"phpunit/phpunit": "8.4.0"
},
"replace": {
"ezsystems/ezpublish": "*",
"ezsystems/ezpublish-api": "self.version",
"ezsystems/ezpublish-spi": "self.version"
},
"autoload": {
"psr-4": {
"EzSystems\\PlatformInstallerBundle\\": "eZ/Bundle/PlatformInstallerBundle/src"
},
"psr-0": {
"eZ": ""
}
},
"autoload-dev": {
"psr-4": {
"EzSystems\\PlatformInstallerBundleTests\\": "eZ/Bundle/PlatformInstallerBundle/tests"
}
},
"config": {
"process-timeout": 3000
},
"scripts": {
"fix-cs": "php-cs-fixer fix -v --show-progress=estimating",
"unit": "paratest -p half -c phpunit.xml --runner=WrapperRunner",
"integration": "paratest -p half -c phpunit-integration-legacy.xml --runner=WrapperRunner",
"test": [
"@unit",
"@integration"
]
},
"scripts-descriptions": {
"fix-cs": "Fix Coding standard issues in current checkout.",
"test": "Run all tests (unit & integration, not functional), might not work on Windows."
},
"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": "8.0.x-dev",
"dev-tmp_ci_branch": "8.0.x-dev"
},
"thanks": {
"name": "ezsystems/ezplatform",
"url": "https://github.com/ezsystems/ezplatform"
}
}
}