-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcomposer.json
150 lines (150 loc) · 5.87 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
{
"name": "ibexa/core",
"description": "Ibexa DXP and Open Source core. Provides the Content Repository, its APIs, and the application's Symfony framework integration.",
"homepage": "https://ibexa.co",
"license": "(GPL-2.0-only or proprietary)",
"suggest": {
"php-64bit": "For support of more than 30 languages, a 64bit php installation on all involved prod/dev machines is required"
},
"require": {
"php": " >=8.3",
"ext-PDO": "*",
"ext-SPL": "*",
"ext-ctype": "*",
"ext-curl": "*",
"ext-dom": "*",
"ext-fileinfo": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-mbstring": "*",
"ext-xsl": "*",
"composer/package-versions-deprecated": "^1.11",
"doctrine/dbal": "^2.13.0",
"doctrine/doctrine-bundle": "^2.0",
"doctrine/orm": "^2.7",
"friendsofphp/proxy-manager-lts": "^1.0",
"friendsofsymfony/http-cache-bundle": "^2.8",
"friendsofsymfony/jsrouting-bundle": "^2.5",
"ibexa/doctrine-schema": "~5.0.x-dev",
"jms/translation-bundle": "^1.5",
"league/flysystem-memory": "^2.0.6",
"liip/imagine-bundle": "^2.3",
"nelmio/cors-bundle": "^2.0",
"oneup/flysystem-bundle": "^4.4.2",
"pagerfanta/pagerfanta": "^2.1",
"psr/event-dispatcher": "^1.0",
"sensio/framework-extra-bundle": "^6.1",
"symfony-cmf/routing": "^2.3",
"symfony/cache": "^5.3.0",
"symfony/console": "^5.3.0",
"symfony/dependency-injection": "^5.3.0",
"symfony/event-dispatcher": "^5.3.0",
"symfony/expression-language": "^5.3.0",
"symfony/framework-bundle": "^5.3.0",
"symfony/http-client": "^5.3.0",
"symfony/http-foundation": "^5.3.0",
"symfony/http-kernel": "^5.3.0",
"symfony/mime": "^5.3.0",
"symfony/polyfill-php80": "^1.27",
"symfony/process": "^5.3.0",
"symfony/security-bundle": "^5.3.0",
"symfony/security-core": "^5.3.0",
"symfony/security-http": "^5.3.0",
"symfony/serializer": "^5.3.0",
"symfony/templating": "^5.3.0",
"symfony/translation": "^5.3.0",
"symfony/validator": "^5.3.0",
"symfony/var-dumper": "^5.3.0",
"symfony/yaml": "^5.3.0",
"twig/extra-bundle": "^3.0",
"twig/twig": "^3.0"
},
"require-dev": {
"behat/behat": "^3.6.1",
"friends-of-behat/mink-extension": "^2.4",
"ibexa/code-style": "~2.0.0",
"jenner/simple_fork": "^1.2",
"matthiasnoback/symfony-dependency-injection-test": "^4.1",
"phpstan/phpstan": "^1.2",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-symfony": "^1.3",
"phpunit/phpunit": "^9.6",
"symfony/phpunit-bridge": "^5.4",
"symfony/proxy-manager-bridge": "^5.3",
"symfony/runtime": "^5.3.0"
},
"conflict": {
"doctrine/dbal": "2.7.0",
"ezsystems/ezpublish-legacy": "*",
"friendsofphp/php-cs-fixer": "3.5.0",
"phpunit/phpunit": "8.4.0",
"symfony/dependency-injection": "5.3.7",
"symfony/security-core": "5.3.0"
},
"replace": {
"ezsystems/ezplatform-kernel": "*"
},
"autoload": {
"psr-4": {
"Ibexa\\Bundle\\Core\\": "src/bundle/Core",
"Ibexa\\Bundle\\Debug\\": "src/bundle/Debug",
"Ibexa\\Bundle\\IO\\": "src/bundle/IO",
"Ibexa\\Bundle\\RepositoryInstaller\\": "src/bundle/RepositoryInstaller",
"Ibexa\\Bundle\\LegacySearchEngine\\": "src/bundle/LegacySearchEngine",
"Ibexa\\Contracts\\Core\\": "src/contracts",
"Ibexa\\Core\\": "src/lib",
"Ibexa\\Tests\\Core\\": "tests/lib",
"Ibexa\\Tests\\Integration\\Core\\": "tests/integration/Core",
"Ibexa\\Tests\\Bundle\\Core\\": "tests/bundle/Core"
}
},
"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\\RepositoryInstaller\\": "tests/bundle/RepositoryInstaller",
"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,
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"*": false
}
},
"scripts": {
"check-cs": "@fix-cs --dry-run",
"fix-cs": "php-cs-fixer fix --config=.php-cs-fixer.php -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-main": "5.0.x-dev"
}
}
}