-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
58 lines (58 loc) · 1.73 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 Platform",
"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": "^8.0",
"ezsystems/repository-forms": "^3.0",
"twig/twig": "^2.4.4"
},
"require-dev": {
"phpunit/phpunit": "^8.2",
"netgen/ez-forms-bundle": "^2.0",
"friendsofphp/php-cs-fixer": "^2.15.1"
},
"minimum-stability": "dev",
"prefer-stable": true,
"suggest": {
"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": {
"ezsystems/ezplatform-solr-search-engine": "<2.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": "4.x-dev"
}
}
}