-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
55 lines (55 loc) · 1.54 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
{
"name": "netgen/ibexa-search-extra",
"description": "Netgen's extra search bits for Ibexa CMS",
"type": "ibexa-bundle",
"license": "GPL-2.0-only",
"authors": [
{
"name": "Petar Španja",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"ext-json": "*",
"ext-dom": "*",
"ibexa/core": "^4.6",
"symfony/messenger": "^5.4",
"symfony/proxy-manager-bridge": "^5.4"
},
"require-dev": {
"ibexa/fieldtype-richtext": "^4.5",
"ibexa/solr": "^4.5",
"phpunit/phpunit": "^8.5",
"matthiasnoback/symfony-dependency-injection-test": "^4.1",
"behat/behat": "^3.6.1",
"friends-of-behat/mink-extension": "^2.4"
},
"conflict": {
"symfony/cache": "5.0.11 || 5.1.3"
},
"suggest": {
"netgen/ibexa-site-api": "Boost your site-building productivity with Ibexa CMS",
"ibexa/solr": "Supports advanced capabilities with Ibexa search API"
},
"autoload": {
"psr-4": {
"Netgen\\IbexaSearchExtra\\": "lib",
"Netgen\\Bundle\\IbexaSearchExtraBundle\\": "bundle"
}
},
"autoload-dev": {
"psr-4": {
"Netgen\\IbexaSearchExtra\\Tests\\": "tests/lib",
"Netgen\\IbexaSearchExtraBundle\\Tests\\": "tests/bundle"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.3-dev"
}
},
"scripts": {
"test": "@php vendor/bin/phpunit --colors=always"
}
}