-
Notifications
You must be signed in to change notification settings - Fork 203
/
composer.json
132 lines (132 loc) · 5.2 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"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-dom": "*",
"ext-fileinfo": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-PDO": "*",
"ext-SPL": "*",
"ext-xsl": "*",
"ext-curl": "*",
"ezsystems/doctrine-dbal-schema": "^0.1@dev",
"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",
"ibexa/templated-uri-bundle": "^2.1",
"pagerfanta/pagerfanta": "^2.0",
"ocramius/proxy-manager": "^2.1",
"doctrine/dbal": "^2.13.0",
"doctrine/orm": "^2.7",
"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",
"friendsofsymfony/jsrouting-bundle": "^1.6.3",
"sensio/framework-extra-bundle": "^5.2",
"jms/translation-bundle": "^1.4",
"twig/twig": "^2.10",
"composer/package-versions-deprecated": "^1.11"
},
"require-dev": {
"jenner/simple_fork": "^1.2",
"friendsofphp/php-cs-fixer": "^2.16.2",
"ezsystems/ezplatform-code-style": "^0.1",
"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 || 3.4.43",
"doctrine/dbal": "2.7.0",
"ezsystems/ezpublish-legacy": "<2019.03"
},
"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",
"Ibexa\\Bundle\\Core\\": "src/bundle/Core",
"Ibexa\\Bundle\\Debug\\": "src/bundle/Debug",
"Ibexa\\Bundle\\IO\\": "src/bundle/IO",
"Ibexa\\Bundle\\Installer\\": "src/bundle/Installer",
"Ibexa\\Bundle\\LegacySearchEngine\\": "src/bundle/LegacySearchEngine",
"Ibexa\\Contracts\\Core\\": "src/contracts",
"Ibexa\\Core\\": "src/lib"
},
"psr-0": {
"eZ": ""
}
},
"autoload-dev": {
"psr-4": {
"Ibexa\\Tests\\Bundle\\Core\\": "tests/bundle/Core",
"Ibexa\\Tests\\Bundle\\Debug\\": "tests/bundle/Debug",
"Ibexa\\Tests\\Bundle\\IO\\": "tests/bundle/IO",
"Ibexa\\Tests\\Bundle\\Installer\\": "tests/bundle/Installer",
"Ibexa\\Tests\\Bundle\\LegacySearchEngine\\": "tests/bundle/LegacySearchEngine",
"Ibexa\\Tests\\Integration\\Core\\": "tests/integration/Core",
"Ibexa\\Tests\\Integration\\Debug\\": "tests/integration/Debug",
"Ibexa\\Tests\\Integration\\IO\\": "tests/integration/IO",
"Ibexa\\Tests\\Integration\\Installer\\": "tests/integration/Installer",
"Ibexa\\Tests\\Integration\\LegacySearchEngine\\": "tests/integration/LegacySearchEngine",
"Ibexa\\Tests\\Core\\": "tests/lib"
}
},
"config": {
"process-timeout": 3000,
"platform": {
"php": "7.1"
},
"allow-plugins": {
"composer/package-versions-deprecated": true
}
},
"scripts": {
"check-cs": "@fix-cs --dry-run",
"fix-cs": "php-cs-fixer fix -v --show-progress=estimating",
"unit": "phpunit -c phpunit.xml",
"integration": [
"Composer\\Config::disableProcessTimeout",
"phpunit -c phpunit-integration-legacy.xml"
],
"test": [
"@unit",
"@integration"
]
},
"scripts-descriptions": {
"check-cs": "Run code style checker for all files",
"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": "2.5",
"branch-alias": {
"dev-master": "7.5.x-dev",
"dev-tmp_ci_branch": "7.5.x-dev"
},
"thanks": {
"name": "ezsystems/ezplatform",
"url": "https://github.com/ezsystems/ezplatform"
}
}
}