forked from ezsystems/ezplatform-xmltext-fieldtype
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 1.21 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
{
"name": "ezsystems/ezplatform-xmltext-fieldtype",
"description": "XmlText field type implementation for eZ Platform",
"license": "GPL-2.0",
"type": "ezplatform-bundle",
"authors": [
{
"name": "eZ Systems dev team",
"email": "[email protected]"
}
],
"minimum-stability": "alpha",
"require": {
"ezsystems/ezpublish-kernel": "^6.0@dev"
},
"require-dev": {
"phpunit/phpunit": "~4.7",
"matthiasnoback/symfony-dependency-injection-test": "0.*",
"zendframework/zend-code": "~2.4.3",
"ezsystems/ezplatform-solr-search-engine": "^1.0@dev,<1.3"
},
"autoload": {
"psr-4": {
"EzSystems\\EzPlatformXmlTextFieldTypeBundle\\": "bundle",
"EzSystems\\EzPlatformXmlTextFieldTypeBundle\\Tests\\": "tests/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",
"EzSystems\\EzPlatformXmlTextFieldType\\Tests\\": "tests/lib"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.1.x-dev"
}
}
}