forked from FriendsOfSymfony/FOSElasticaBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 2.06 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
{
"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": "[email protected]" },
{ "name": "Richard Miller", "email": "[email protected]" },
{ "name": "Jeremy Mikola", "email": "[email protected]" }
],
"require": {
"php": "^7.1",
"symfony/framework-bundle": "^3.4|^4",
"symfony/console": "^3.4|^4",
"symfony/dependency-injection": "^3.4|^4",
"symfony/property-access": "^3.4|^4",
"pagerfanta/pagerfanta": "^1.0.5|^2.0",
"psr/log": "^1.0",
"ruflin/elastica": "^5.3.5|^6.1.1"
},
"require-dev": {
"doctrine/orm": "^2.5",
"doctrine/doctrine-bundle": "^1.6",
"doctrine/phpcr-bundle": "^1.3|^2.0",
"doctrine/phpcr-odm": "^1.4",
"jackalope/jackalope-doctrine-dbal": "^1.2",
"jms/serializer-bundle": "^2.2",
"phpunit/phpunit": "^5.7.11|^6.5",
"knplabs/knp-components": "^1.2",
"symfony/expression-language" : "^3.4|^4",
"symfony/twig-bundle": "^3.4|^4",
"symfony/serializer": "^3.4|^4",
"symfony/yaml": "^3.4|^4",
"friendsofphp/php-cs-fixer": "^2.2",
"symfony/web-profiler-bundle": "^3.4|^4.0"
},
"suggest": {
"enqueue/elastica-bundle": "The bundle adds extra features to FOSElasticaBundle bundle. Aimed to improve performance."
},
"autoload": {
"psr-4": { "FOS\\ElasticaBundle\\": "src/" }
},
"autoload-dev": {
"psr-4": { "FOS\\ElasticaBundle\\Tests\\": "tests/" }
},
"extra": {
"branch-alias": {
"dev-master": "5.1.x-dev"
}
}
}