forked from ezsystems/ezplatform-xmltext-fieldtype
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.6 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
{
"name": "ezsystems/ezplatform-xmltext-fieldtype",
"description": "XmlText field type implementation for eZ Platform",
"license": "GPL-2.0",
"type": "ezplatform-bundle",
"authors": [
{
"name": "eZ dev-team & eZ Community",
"homepage": "https://github.com/ezsystems/ezplatform-xmltext-fieldtype/contributors"
}
],
"require": {
"ezsystems/ezpublish-kernel": "^6.11@dev || ^7.0@dev",
"ezsystems/repository-forms": "^1.9 || ^2.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"matthiasnoback/symfony-dependency-injection-test": "~1.0",
"ezsystems/ezplatform-solr-search-engine": "^1.0@dev,<1.3",
"friendsofphp/php-cs-fixer": "~2.7.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 ./vendor/bin/php-cs-fixer fix -v --show-progress=estimating"
},
"extra": {
"branch-alias": {
"dev-master": "1.5.x-dev"
}
}
}