forked from FriendsOfSymfony/FOSElasticaBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
80 lines (80 loc) · 2.57 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
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "friendsofsymfony/elastica-bundle",
"type": "symfony-bundle",
"description": "Elasticsearch PHP integration for your Symfony project using Elastica",
"keywords": [
"doctrine2",
"elastica",
"elasticsearch",
"mongodb",
"search"
],
"homepage": "https://github.com/FriendsOfSymfony/FOSElasticaBundle",
"license": "MIT",
"authors": [
{
"name": "FriendsOfSymfony Community",
"homepage": "https://github.com/FriendsOfSymfony/FOSElasticaBundle/contributors"
},
{
"name": "Tim Nagel",
"email": "tim@nagel.com.au"
},
{
"name": "Richard Miller",
"email": "richard.miller@limethinking.co.uk"
},
{
"name": "Jeremy Mikola",
"email": "jmikola@gmail.com"
}
],
"require": {
"php": "^7.2",
"pagerfanta/pagerfanta": "^2.0",
"psr/log": "^1.0",
"ruflin/elastica": "^7.0",
"symfony/console": "^4.4 || ^5.1",
"symfony/dependency-injection": "^4.4 || ^5.1",
"symfony/framework-bundle": "^4.4 || ^5.1",
"symfony/messenger": "^4.4 || ^5.1",
"symfony/property-access": "^4.4 || ^5.1"
},
"require-dev": {
"doctrine/doctrine-bundle": "^2.0",
"doctrine/mongodb-odm-bundle": "^4.0",
"doctrine/orm": "^2.7",
"doctrine/persistence": "^1.3.4",
"doctrine/phpcr-bundle": "^1.3 || ^2.0",
"doctrine/phpcr-odm": "^1.4",
"friendsofphp/php-cs-fixer": "^2.2",
"jackalope/jackalope-doctrine-dbal": "^1.2",
"jms/serializer-bundle": "^2.3 || ^3.5",
"knplabs/knp-components": "^2.3",
"phpunit/phpunit": "^8.5",
"symfony/expression-language": "^4.4 || ^5.1",
"symfony/serializer": "^4.4 || ^5.1",
"symfony/twig-bundle": "^4.4 || ^5.1",
"symfony/web-profiler-bundle": "^4.4 || ^5.1",
"symfony/yaml": "^4.4 || ^5.1"
},
"suggest": {
"enqueue/elastica-bundle": "For populating Elasticsearch indexes asynchronously and using significanly less resources. Uses Enqueue.",
"symfony/messenger": "For populating Elasticsearch indexes asynchronously and using significanly less resources."
},
"extra": {
"branch-alias": {
"dev-master": "6.0.x-dev"
}
},
"autoload": {
"psr-4": {
"FOS\\ElasticaBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"FOS\\ElasticaBundle\\Tests\\": "tests/"
}
}
}