-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
49 lines (49 loc) · 1.43 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
{
"name": "netgen/ibexa-legacy-bridge",
"description": "Ibexa bridge to eZ Publish Legacy",
"license": "GPL-2.0",
"type": "ezplatform-bundle",
"authors": [
{
"name": "Netgen",
"website": "https://netgen.io"
},
{
"name": "eZ Systems",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"netgen/ezpublish-legacy-installer": "^2.2",
"netgen/ezpublish-legacy": "dev-ibexa-support",
"ibexa/core": "^4.6",
"netgen/ibexa-xmltext-fieldtype": "^3.0",
"netgen/richtext-datatype-bundle": "^2.0",
"twig/twig": "^3.13"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16.2",
"ezsystems/ezplatform-code-style": "^0.1",
"ezsystems/ezplatform-http-cache": "~0.9",
"matthiasnoback/symfony-dependency-injection-test": "^2.3",
"phpunit/phpunit": "^6.5",
"mikey179/vfsstream": "~1.1.0"
},
"autoload": {
"psr-4": {
"eZ\\Bundle\\EzPublishLegacyBundle\\": "bundle/",
"eZ\\Publish\\Core\\MVC\\Legacy\\": "mvc"
}
},
"scripts": {
"fix-cs": "php-cs-fixer fix -v --show-progress=estimating",
"test": "vendor/bin/phpunit"
},
"extra": {
"ezpublish-legacy-dir": "ezpublish_legacy",
"branch-alias": {
"dev-master": "3.0.x-dev"
}
}
}