-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
58 lines (58 loc) · 1.85 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
56
57
58
{
"name": "netgen/enhanced-selection-bundle",
"description": "Netgen Enhanced Selection bundle for eZ Publish",
"type": "ezplatform-bundle",
"keywords": [
"ezpublish",
"ezplatform",
"netgen",
"enhanced-selection-bundle"
],
"homepage": "https://github.com/netgen/NetgenEnhancedSelectionBundle",
"license": "GPL-2.0-only",
"authors": [
{
"name": "Netgen",
"homepage": "https://www.netgenlabs.com"
}
],
"require": {
"ezsystems/ezpublish-kernel": "^6.11 || ^7.0 || ^8.0",
"ezsystems/repository-forms": "^1.9 || ^2.0 || ^3.0",
"twig/twig": "^1.35 || ^2.4.4"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"netgen/ez-forms-bundle": "^2.0",
"friendsofphp/php-cs-fixer": "~2.0"
},
"suggest": {
"netgen/enhancedselection2": "To edit this field type in legacy administration interface",
"netgen/ez-forms-bundle": "Allows use of enhanced selection field type with Symfony forms",
"ezsystems/ezplatform-solr-search-engine": "Allows use of EnhancedSelection search criterion with Solr search engine"
},
"conflict": {
"netgen/enhancedselection2": "<2.0",
"ezsystems/ezplatform-solr-search-engine": "<1.4.0"
},
"autoload": {
"psr-4": {
"Netgen\\Bundle\\EnhancedSelectionBundle\\": "bundle/"
}
},
"autoload-dev": {
"psr-4": {
"Netgen\\Bundle\\EnhancedSelectionBundle\\Tests\\": "tests/"
}
},
"scripts": {
"test": "@php vendor/bin/phpunit --colors=always",
"coverage": "@php -dzend_extension=xdebug.so vendor/bin/phpunit --colors=always",
"fix": "@php vendor/bin/php-cs-fixer fix"
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
}
}