-
Notifications
You must be signed in to change notification settings - Fork 29
/
composer.json
55 lines (55 loc) · 1.91 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
{
"name": "ezsystems/ezplatform-xmltext-fieldtype",
"description": "XmlText field type implementation for eZ Platform",
"license": "GPL-2.0-only",
"type": "ezplatform-bundle",
"authors": [
{
"name": "eZ dev-team & eZ Community",
"homepage": "https://github.com/ezsystems/ezplatform-xmltext-fieldtype/contributors"
}
],
"require": {
"php": "^7.3",
"ext-xsl": "*",
"ext-dom": "*",
"ezsystems/ezplatform-kernel": "^1.0",
"ezsystems/ezplatform-content-forms": "^1.0",
"ezsystems/ezplatform-richtext": "^2.0",
"ezsystems/ezplatform-rest": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"matthiasnoback/symfony-dependency-injection-test": "^4.0",
"ezsystems/ezplatform-solr-search-engine": "^3.0",
"friendsofphp/php-cs-fixer": "v2.16.1"
},
"autoload": {
"psr-4": {
"EzSystems\\EzPlatformXmlTextFieldTypeBundle\\": "bundle",
"eZ\\Publish\\Core\\FieldType\\XmlText\\": "lib/FieldType/XmlText",
"eZ\\Publish\\Core\\Persistence\\Legacy\\Content\\FieldValue\\Converter\\": "lib/Persistence/Legacy/Content/FieldValue/Converter",
"eZ\\Publish\\Core\\REST\\Common\\FieldTypeProcessor\\": "lib/REST/Common/FieldTypeProcessor"
}
},
"autoload-dev": {
"psr-4": {
"EzSystems\\EzPlatformXmlTextFieldTypeBundle\\Tests\\": "tests/bundle",
"EzSystems\\EzPlatformXmlTextFieldType\\Tests\\": "tests/lib"
}
},
"scripts": {
"fix-cs": "php-cs-fixer fix -v --show-progress=estimating",
"unit": "phpunit -c phpunit.xml",
"integration": "phpunit -c phpunit-integration-legacy.xml",
"test": [
"@unit",
"@integration"
]
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}