-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
51 lines (51 loc) · 1.55 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
{
"name": "netgen/ezplatform-search-extra",
"description": "Netgen's extra bits for eZ Platform search",
"type": "ezplatform-bundle",
"license": "GPL-2.0-only",
"authors": [
{
"name": "Petar Španja",
"email": "[email protected]"
}
],
"require": {
"ezsystems/ezplatform-kernel": "^1.2",
"ext-json": "*",
"ext-dom": "*"
},
"require-dev": {
"netgen/ezplatform-site-api": "^4.3",
"ezsystems/ezplatform-solr-search-engine": "^3.1",
"ezsystems/ezplatform-xmltext-fieldtype": "^2.0",
"phpunit/phpunit": "^8.2",
"matthiasnoback/symfony-dependency-injection-test": "^4.1"
},
"conflict": {
"symfony/cache": "5.0.11 || 5.1.3"
},
"suggest": {
"netgen/ezplatform-site-api": "Boost your site-building productivity with eZ Platform",
"ezsystems/ezplatform-solr-search-engine": "Supports advanced capabilities with eZ Platform search API, ^1.4 is required"
},
"autoload": {
"psr-4": {
"Netgen\\EzPlatformSearchExtra\\": "lib",
"Netgen\\Bundle\\EzPlatformSearchExtraBundle\\": "bundle"
}
},
"autoload-dev": {
"psr-4": {
"Netgen\\EzPlatformSearchExtra\\Tests\\": "tests/lib",
"Netgen\\EzPlatformSearchExtraBundle\\Tests\\": "tests/bundle"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.7-dev"
}
},
"scripts": {
"test": "@php vendor/bin/phpunit --colors=always"
}
}