-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.24 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.24 KB
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
{
"name": "netgen/ibexa-import-export",
"description": "The Ibexa Import Export module enables import/export operations through the administration UI in Ibexa DXP",
"type": "ezplatform-bundle",
"homepage": "https://github.com/netgen/ibexa-import-export",
"license": "GPL-2.0-only",
"authors": [
{
"name": "Netgen",
"homepage": "https://netgen.io"
}
],
"require": {
"php": "^8.1",
"ibexa/admin-ui": "^4.6",
"ibexa/core": "^4.6",
"netgen/content-browser": "^1.4",
"tanoconsulting/ibexa-migration-bundle": "^1.0",
"netgen/tagsbundle": "^5.2",
"ext-dom": "*"
},
"require-dev": {
"phpunit/phpunit": "^10",
"matthiasnoback/symfony-dependency-injection-test": "^6.0.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Netgen\\IbexaImportExport\\": "lib/",
"Netgen\\IbexaImportExportBundle\\": "bundle/"
}
},
"autoload-dev": {
"psr-4": {
"Netgen\\IbexaImportExportBundle\\Tests\\": "tests/bundle"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}