-
Notifications
You must be signed in to change notification settings - Fork 29
/
composer.json
152 lines (152 loc) · 5.98 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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
{
"name": "ezsystems/ezplatform-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 || ^8.0",
"ext-ctype": "*",
"ext-fileinfo": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-PDO": "*",
"ext-SPL": "*",
"ext-xsl": "*",
"ext-curl": "*",
"ext-dom": "*",
"symfony/cache": "^5.3.0",
"symfony/http-foundation": "^5.3.0",
"symfony/framework-bundle": "^5.3.0",
"symfony/process": "^5.3.0",
"symfony/dependency-injection": "^5.3.0",
"symfony/event-dispatcher": "^5.3.0",
"symfony/mime": "^5.3.0",
"symfony/translation": "^5.3.0",
"symfony/yaml": "^5.3.0",
"symfony/security-core": "^5.3.0",
"symfony/security-http": "^5.3.0",
"symfony/security-bundle": "^5.3.0",
"symfony/serializer": "^5.3.0",
"symfony/http-kernel": "^5.3.0",
"symfony/console": "^5.3.0",
"symfony/expression-language": "^5.3.0",
"symfony/validator": "^5.3.0",
"symfony/var-dumper": "^5.3.0",
"ezsystems/doctrine-dbal-schema": "^1.0@dev",
"symfony-cmf/routing": "^2.3",
"guzzlehttp/guzzle": "^6.5",
"php-http/guzzle6-adapter": "^2.0",
"nelmio/cors-bundle": "^2.0",
"pagerfanta/pagerfanta": "^2.1",
"doctrine/dbal": "^2.13.0",
"doctrine/orm": "^2.7",
"doctrine/doctrine-bundle": "^2.0",
"liip/imagine-bundle": "^2.3",
"oneup/flysystem-bundle": "^3.4",
"friendsofsymfony/http-cache-bundle": "^2.8",
"sensio/framework-extra-bundle": "^6.1",
"jms/translation-bundle": "^1.5",
"twig/twig": "^3.0",
"twig/extra-bundle": "^3.0",
"friendsofsymfony/jsrouting-bundle": "^2.5",
"friendsofphp/proxy-manager-lts": "^1.0",
"psr/event-dispatcher": "^1.0",
"symfony/templating": "^5.3.0",
"composer/package-versions-deprecated": "^1.11"
},
"require-dev": {
"behat/behat": "^3.6.1",
"jenner/simple_fork": "^1.2",
"friends-of-behat/mink-extension": "^2.4",
"league/flysystem-memory": "^1.0",
"ibexa/ci-scripts": "^0.1@dev",
"ezsystems/ezplatform-code-style": "^2.0",
"phpunit/phpunit": "^8.2",
"matthiasnoback/symfony-dependency-injection-test": "^4.1",
"symfony/phpunit-bridge": "^5.1",
"symfony/proxy-manager-bridge": "^5.3",
"phpstan/phpstan": "^1.2",
"symfony/runtime": "^5.3.0"
},
"conflict": {
"friendsofphp/php-cs-fixer": "3.5.0",
"symfony/dependency-injection": "5.3.7",
"symfony/security-core": "5.3.0",
"doctrine/dbal": "2.7.0",
"ezsystems/ezpublish-legacy": "*",
"phpunit/phpunit": "8.4.0"
},
"replace": {
"ezsystems/ezpublish-kernel": "*"
},
"autoload": {
"psr-4": {
"EzSystems\\PlatformInstallerBundle\\": "eZ/Bundle/PlatformInstallerBundle/src",
"eZ\\": "eZ",
"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"
},
"classmap": ["tests/integration/Core/RepositoryTestCase.php"]
},
"autoload-dev": {
"psr-4": {
"EzSystems\\PlatformInstallerBundleTests\\": "eZ/Bundle/PlatformInstallerBundle/tests",
"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\\RepositoryInstaller\\": "tests/integration/RepositoryInstaller",
"Ibexa\\Tests\\Integration\\LegacySearchEngine\\": "tests/integration/LegacySearchEngine",
"Ibexa\\Tests\\Core\\": "tests/lib"
}
},
"config": {
"process-timeout": 3000,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"*": false
}
},
"scripts": {
"check-cs": "@fix-cs --dry-run",
"fix-cs": "php-cs-fixer fix -v --show-progress=dots",
"unit": "phpunit -c phpunit.xml",
"phpstan": "phpstan analyse",
"integration": [
"Composer\\Config::disableProcessTimeout",
"phpunit -c phpunit-integration-legacy.xml"
],
"test-integration-solr": "phpunit -c phpunit-integration-legacy-solr.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": {
"branch-alias": {
"dev-master": "1.3.x-dev"
},
"thanks": {
"name": "ezsystems/ezplatform",
"url": "https://github.com/ezsystems/ezplatform"
}
}
}