forked from massiveart/MassiveSearchBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (49 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
{
"name": "massive/search-bundle",
"description": "Massive Search Bundle",
"license": "MIT",
"authors": [
{
"name": "Daniel Leech",
"email": "[email protected]"
}
],
"require": {
"jms/metadata": "~1.5",
"symfony/property-access": "~2.7||~3.0",
"php": ">=5.4.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8 || ^5.7",
"zendframework/zend-stdlib": "2.3.1 as 2.0.0rc5",
"zendframework/zendsearch": "2.*@dev",
"elasticsearch/elasticsearch": "^2.1||^6.0",
"symfony-cmf/testing": "^1.3",
"symfony/symfony": "~2.7||~3.0",
"matthiasnoback/symfony-dependency-injection-test": "0.7.*",
"doctrine/doctrine-bundle": "~1.4",
"doctrine/orm": "~2.5",
"behat/behat": "~3.1.0",
"behat/web-api-extension": "~1.0@dev",
"behat/symfony2-extension": "~2.0@dev",
"phpbench/phpbench": "~0.10.0",
"phpbench/tabular": "@dev",
"guzzlehttp/streams": "^3.0.0"
},
"suggest": {
"sensio/distribution-bundle": "Required if the SearchScriptHandler is used",
"zendframework/zendsearch": "To use the PHP based Zend Search library (based on Lucene)",
"zendframework/zend-stdlib": "(dependency of zendsearch)",
"elasticsearch/elasticsearch": "To use Elasticsearch"
},
"autoload": {
"psr-4": {
"Massive\\Bundle\\SearchBundle\\": ""
}
},
"extra": {
"branch-alias": {
"dev-develop": "1.0-dev"
}
}
}