-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathcomposer.json
40 lines (40 loc) · 1.24 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
{
"name": "ezsystems/ezplatform-solr-search-engine",
"description": "Solr search engine implementation for eZ Platform",
"license": "GPL-2.0-only",
"type": "ezplatform-bundle",
"homepage": "https://github.com/ezsystems/ezplatform-solr-search-engine",
"authors": [
{
"name": "eZ Systems dev team",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1",
"ezsystems/ezpublish-kernel": "^7.5.8",
"netgen/query-translator": "^1.0.2"
},
"require-dev": {
"phpunit/phpunit": "^7.5",
"matthiasnoback/symfony-dependency-injection-test": "^3.1"
},
"autoload": {
"psr-4": {
"EzSystems\\EzPlatformSolrSearchEngine\\": "lib",
"EzSystems\\EzPlatformSolrSearchEngineBundle\\": "bundle",
"EzSystems\\EzPlatformSolrSearchEngine\\Tests\\SetupFactory\\": "tests/lib/SetupFactory"
}
},
"autoload-dev": {
"psr-4": {
"EzSystems\\EzPlatformSolrSearchEngine\\Tests\\": "tests/lib",
"EzSystems\\EzPlatformSolrSearchEngineBundle\\Tests\\": "tests/bundle"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.7.x-dev"
}
}
}