forked from massiveart/MassiveSearchBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
62 lines (59 loc) · 1.94 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
53
54
55
56
57
58
59
60
61
62
{
"name": "massive/search-bundle",
"description": "Massive Search Bundle",
"license": "MIT",
"authors": [
{
"name": "Daniel Leech",
"email": "[email protected]"
}
],
"require": {
"jms/metadata": "^2.0",
"symfony/console": "^4.3",
"symfony/event-dispatcher": "^4.3",
"symfony/expression-language": "^4.3",
"symfony/dependency-injection": "^4.3",
"symfony/property-access": "^4.3",
"php": ">=7.2.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7.27",
"phpspec/prophecy": "^1.7",
"handcraftedinthealps/zendsearch": "^2.0@dev",
"elasticsearch/elasticsearch": "^2.1 || ^5.0",
"symfony-cmf/testing": "^1.3 || ^2.1",
"symfony/filesystem": "^4.3.2",
"symfony/finder": "^4.3",
"symfony/http-kernel": "^4.3",
"symfony/framework-bundle": "^4.3",
"symfony/form": "^4.3",
"symfony/monolog-bridge": "^4.3",
"symfony/validator": "^4.3",
"symfony/templating": "^4.3",
"matthiasnoback/symfony-dependency-injection-test": "^1.0 || ^2.3",
"doctrine/doctrine-cache-bundle": ">= 1.3.1",
"doctrine/doctrine-bundle": "^1.10",
"doctrine/orm": "^2.5",
"behat/behat": "^3.4.2",
"behat/web-api-extension": "~1.0@dev",
"behat/symfony2-extension": "~2.1",
"guzzlehttp/ringphp": ">= 1.0.7",
"guzzlehttp/streams": "^3.0.0"
},
"suggest": {
"sensio/distribution-bundle": "Required if the SearchScriptHandler is used",
"handcraftedinthealps/zendsearch": "To use the PHP based Zend Search library (based on Lucene)",
"elasticsearch/elasticsearch": "To use Elasticsearch"
},
"autoload": {
"psr-4": {
"Massive\\Bundle\\SearchBundle\\": ""
}
},
"extra": {
"branch-alias": {
"dev-develop": "2.0-dev"
}
}
}