-
Notifications
You must be signed in to change notification settings - Fork 31
/
composer.json
45 lines (45 loc) · 1.37 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
{
"name": "ezsystems/legacy-bridge",
"description": "eZ Platform bridge to eZ Publish Legacy",
"license": "GPL-2.0",
"type": "ezplatform-bundle",
"authors": [
{
"name": "eZ Systems",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"ezsystems/ezpublish-legacy-installer": "^2.0.4",
"ezsystems/ezpublish-legacy": "^2019.03",
"ezsystems/ezpublish-kernel": "^7.5.24",
"ezsystems/ezplatform-xmltext-fieldtype": "^1.8",
"sensio/distribution-bundle": "^5.0.24",
"twig/twig": "^1.35 || ^2.5"
},
"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": "2.1.x-dev"
}
}
}