-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathcomposer.json
46 lines (46 loc) · 1.48 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
{
"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.3",
"ezsystems/ezplatform-kernel": "~1.0.3",
"netgen/query-translator": "^1.0.2",
"symfony/http-kernel": "^5.0",
"symfony/dependency-injection": "^5.0",
"symfony/console": "^5.0",
"symfony/config": "^5.0",
"symfony/framework-bundle": "^5.0"
},
"require-dev": {
"ezsystems/doctrine-dbal-schema": "^1.0",
"phpunit/phpunit": "^8.2",
"matthiasnoback/symfony-dependency-injection-test": "^4.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": "3.0.x-dev"
}
}
}