-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
76 lines (75 loc) · 2.1 KB
/
composer.json
File metadata and controls
76 lines (75 loc) · 2.1 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
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
{
"name": "code-rhapsodie/ibexa-dataflow-bundle",
"replace": {
"code-rhapsodie/ezdataflow-bundle": "*"
},
"description": "Import / export bundle for Ibexa Content based on Code Rhapsodie Dataflow framework",
"type": "symfony-bundle",
"keywords": ["dataflow", "import", "export", "data processing", "ibexa"],
"license": "MIT",
"authors": [
{
"name": "Jérémy J.",
"email": "jeremy@code-rhapsodie.fr",
"role": "Developer"
},
{
"name": "Jean-Baptiste Nahan",
"email": "jean-baptiste@code-rhapsodie.fr",
"role": "Developer"
},
{
"name": "Manuel Farrica",
"email": "manuel@code-rhapsodie.fr",
"role": "Developer"
},
{
"name": "Code Rhapsodie",
"homepage": "https://www.code-rhapsodie.fr/"
},
{
"name": "Other contributors",
"homepage": "https://github.com/code-rhapsodie/ibexa-dataflow-bundle/graphs/contributors"
}
],
"autoload": {
"psr-4": {
"CodeRhapsodie\\IbexaDataflowBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CodeRhapsodie\\IbexaDataflowBundle\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.3",
"ext-json": "*",
"code-rhapsodie/dataflow-bundle": "^5.0",
"guzzlehttp/promises": "^2.2",
"http-interop/http-factory-guzzle": "^1.2",
"ibexa/admin-ui": "^5.0",
"ibexa/core": "^5.0"
},
"require-dev": {
"doctrine/dbal": "^3.0",
"phpunit/phpunit": "^12.0",
"rector/rector": "^2.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"bin": ["bin/ibexa-dataflow-namespace-changer.phar"],
"extra": {
"branch-alias": {
"dev-v4.x": "4.x-dev",
"dev-v5.x": "5.x-dev",
"dev-v6.x": "6.x-dev"
}
}
}