-
-
Notifications
You must be signed in to change notification settings - Fork 81
/
composer.json
82 lines (82 loc) · 2.51 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
{
"name": "kaliop/ezmigrationbundle",
"type": "symfony-bundle",
"description": "Kaliop eZ-Migration Bundle",
"keywords": ["migrations", "database", "ezpublish"],
"license": "GPL-2.0",
"authors": [
{
"name": "Gaetano Giunta",
"email": "[email protected]",
"role": "Lead Developer"
},
{
"name": "Daniel Clements",
"role": "Developer"
},
{
"name": "Peter Halasz",
"role": "Original author"
}
],
"require": {
"php": ">=5.6",
"ext-pdo": "*",
"ezsystems/ezpublish-kernel": ">=5.4|>=2014.11",
"mtdowling/jmespath.php": "2.*",
"nikic/php-parser": "^2.0 || ^3.0 || ^4.0",
"symfony/expression-language": "*",
"symfony/process": "*",
"symfony/swiftmailer-bundle": "*",
"symfony/validator": "*",
"symfony/var-dumper": "*"
},
"require-dev": {
"php-http/mock-client": "*",
"phpunit/phpunit": "^5.0 || ^8.5.14",
"roave/security-advisories": "dev-disablechecks as dev-master",
"yoast/phpunit-polyfills": "^1.0"
},
"suggest": {
"php-http/httplug-bundle": "Required for usage of HTTP/CALL migration steps"
},
"conflict": {
"ezsystems/ezpublish-kernel": "6.7.3",
"netgen/tagsbundle": "1.*",
"symfony/symfony": "3.4.12",
"tanoconsulting/ibexa-migration-bundle": "*",
"tanoconsulting/ezmigrationbundle2": "*"
},
"autoload": {
"psr-4": { "Kaliop\\eZMigrationBundle\\": "" }
},
"_comment::tests": "the following section is needed to insure that eZPublish 5 can be built using the custom euts directory structure where it is not in the root folder",
"extra": {
"ezpublish-legacy-dir": "vendor/ezsystems/ezpublish-legacy"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/gggeek/BehatBundle",
"no-api": true
},
{
"type": "vcs",
"url": "https://github.com/kaliop-uk/SecurityAdvisoriesNoConflicts",
"no-api": true
}
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/tanoconsulting"
}
],
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"ezsystems/ezpublish-legacy-installer": true,
"symfony/thanks": true
}
}
}