-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
54 lines (54 loc) · 1.56 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
{
"name": "netgen/enhanced-selection-bundle",
"description": "Netgen Enhanced Selection bundle for Ibexa Platform",
"type": "ibexa-bundle",
"keywords": [
"ibexa",
"netgen",
"enhanced-selection-bundle"
],
"homepage": "https://github.com/netgen/NetgenEnhancedSelectionBundle",
"license": "GPL-2.0-only",
"authors": [
{
"name": "Netgen",
"homepage": "https://netgen.io"
}
],
"require": {
"ibexa/core": "^4.0",
"ibexa/content-forms": "^4.0",
"twig/twig": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"netgen/ibexa-forms-bundle": "^4.0",
"friendsofphp/php-cs-fixer": "^3.3"
},
"minimum-stability": "dev",
"prefer-stable": true,
"suggest": {
"netgen/ibexa-forms-bundle": "Allows use of enhanced selection field type with Symfony forms",
"ibexa/solr": "Allows use of EnhancedSelection search criterion with Solr search engine"
},
"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": "5.x-dev"
}
}
}