-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
61 lines (61 loc) · 1.73 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
{
"name": "tanoconsulting/ezmigrationbundle2",
"type": "symfony-bundle",
"description": "The port of Kaliop eZ-Migration Bundle to eZPlatorm 3 aka Ibexa",
"keywords": ["migrations", "database", "ezplatform"],
"license": "GPL-2.0",
"authors": [
{
"name": "Gaetano Giunta",
"email": "ggiunta@tanoconsulting.com",
"role": "Lead Developer"
},
{
"name": "Peter Halasz",
"role": "Original author"
}
],
"require": {
"php": "^7.3|^8.0",
"ext-ctype": "*",
"ext-json": "*",
"ext-pdo": "*",
"doctrine/dbal": "^2.11|^3.0",
"ezsystems/ezplatform-kernel": "^1.0",
"mtdowling/jmespath.php": "^2.0.0",
"nikic/php-parser": "^4.2.2",
"symfony/expression-language": "*",
"symfony/process": "*",
"symfony/swiftmailer-bundle": "*",
"symfony/validator": "*",
"symfony/var-dumper": "*"
},
"require-dev": {
"phpunit/phpunit": "^8.5.12"
},
"conflict": {
"kaliop/ezmigrationbundle": "*",
"tanoconsulting/ibexa-migration-bundle": "*"
},
"suggest": {
"php-http/httplug-bundle": "Required for usage of HTTP/CALL migration steps"
},
"autoload": {
"psr-4": { "Kaliop\\eZMigrationBundle\\": "" }
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"ibexa/post-install": true,
"symfony/flex": true,
"symfony/runtime": true,
"symfony/thanks": true
}
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/tanoconsulting"
}
]
}