-
Notifications
You must be signed in to change notification settings - Fork 24
/
composer.json
68 lines (66 loc) · 2.53 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
63
64
65
66
67
68
{
"name": "massive/search-bundle",
"description": "Massive Search Bundle",
"license": "MIT",
"authors": [
{
"name": "Daniel Leech",
"email": "daniel.leech@massiveart.com"
}
],
"require": {
"jms/metadata": "^2.6",
"symfony/config": "^4.3 || ^5.0 || ^6.0 || ^7.0",
"symfony/console": "^4.3 || ^5.0 || ^6.0 || ^7.0",
"symfony/event-dispatcher": "^4.3 || ^5.0 || ^6.0 || ^7.0",
"symfony/expression-language": "^4.3 || ^5.0 || ^6.0 || ^7.0",
"symfony/dependency-injection": "^4.3 || ^5.0 || ^6.0 || ^7.0",
"symfony/property-access": "^4.3 || ^5.0 || ^6.0 || ^7.0",
"php": "^7.2 || ^8.0"
},
"require-dev": {
"handcraftedinthealps/zendsearch": "^2.0",
"elasticsearch/elasticsearch": "^2.1 || ^5.0 || ^7.0",
"symfony-cmf/testing": "^3.0 || ^4.0 || ^5.0",
"symfony/filesystem": "^4.3.2 || ^5.0 || ^6.0 || ^7.0",
"symfony/finder": "^4.3 || ^5.0 || ^6.0 || ^7.0",
"symfony/http-kernel": "^4.3 || ^5.0 || ^6.0 || ^7.0",
"symfony/framework-bundle": "^4.3 || ^5.0 || ^6.0 || ^7.0",
"symfony/form": "^4.3 || ^5.0 || ^6.0 || ^7.0",
"symfony/monolog-bridge": "^4.3 || ^5.0 || ^6.0 || ^7.0",
"symfony/monolog-bundle": "^3.1",
"symfony/security-bundle": "^4.3 || ^5.0 || ^6.0 || ^7.0",
"symfony/twig-bundle": "^4.3 || ^5.0 || ^6.0 || ^7.0",
"symfony/validator": "^4.3 || ^5.0 || ^6.0 || ^7.0",
"symfony/phpunit-bridge": "^5.0.4 || ^6.0 || ^7.0",
"matthiasnoback/symfony-dependency-injection-test": "^4.0 || ^5.0",
"doctrine/doctrine-bundle": "^1.10 || ^2.0",
"doctrine/orm": "^2.5",
"behat/behat": "^3.4.2",
"webmozart/assert": "^1.7",
"doctrine/annotations": "^1.14"
},
"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"
},
"conflict": {
"guzzlehttp/ringphp": "< 1.0.7",
"symfony/security-guard": "5.4.0-BETA1",
"doctrine/doctrine-cache-bundle": "<1.3.1"
},
"autoload": {
"psr-4": {
"Massive\\Bundle\\SearchBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"autoload-dev": {
"psr-4": {
"Massive\\Bundle\\SearchBundle\\Tests\\": "Tests"
}
}
}