forked from massiveart/MassiveSearchBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (47 loc) · 1.51 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
{
"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 || ~4.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",
"symfony-cmf/testing": "^1.3 || ^2.1",
"symfony/symfony": "~2.7 || ~3.0 || ~4.0",
"matthiasnoback/symfony-dependency-injection-test": "^1.0 || ^2.3",
"doctrine/doctrine-bundle": "~1.4",
"doctrine/orm": "~2.5",
"behat/behat": "^3.4.2",
"behat/web-api-extension": "~1.0@dev",
"behat/symfony2-extension": "~2.1",
"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"
}
}
}