-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcomposer.json
61 lines (61 loc) · 2.4 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
{
"name": "fazland/elastica-bundle",
"type": "symfony-bundle",
"description": "Elasticsearch PHP integration for your Symfony2 project using Elastica",
"keywords": ["doctrine2", "elastica", "elasticsearch", "mongodb", "propel", "search"],
"homepage": "https://github.com/Fazland/FazlandElasticaBundle",
"license": "MIT",
"authors": [
{ "name": "Fazland Community", "homepage": "https://github.com/Fazland/FazlandElasticaBundle/contributors" },
{ "name": "Tim Nagel", "email": "[email protected]" },
{ "name": "Richard Miller", "email": "[email protected]" },
{ "name": "Jeremy Mikola", "email": "[email protected]" },
{ "name": "Giovanni Albero", "email": "[email protected]" },
{ "name": "Alessandro Chitolina", "email": "[email protected]" }
],
"require": {
"php": "^7.0",
"symfony/framework-bundle": "~2.7|~3.0",
"symfony/console": "~2.7|~3.0",
"symfony/property-access": "~2.7|~3.0",
"psr/log": "~1.0",
"ruflin/elastica": "~5.2"
},
"require-dev":{
"alcaeus/mongo-php-adapter": "^1.0.10",
"doctrine/data-fixtures": "^1.2",
"doctrine/doctrine-bundle": "~1.6",
"doctrine/mongodb": "^1.4",
"doctrine/mongodb-odm-bundle": "^3.0",
"doctrine/orm": "~2.4",
"doctrine/phpcr-bundle": "~1.2",
"doctrine/phpcr-odm": "^1.4",
"jackalope/jackalope-doctrine-dbal": "~1.1",
"jms/serializer-bundle": "~1.1",
"knplabs/knp-components": "~1.2",
"knplabs/knp-paginator-bundle": "~2.5",
"pagerfanta/pagerfanta": "~1.0",
"php-mock/php-mock-prophecy": "^0.0.2",
"phpspec/prophecy": "^1.7",
"phpunit/phpunit": "^5.7,>=5.7.1",
"propel/propel1": "1.6.*",
"symfony/browser-kit": "~2.7|~3.0",
"symfony/dependency-injection": "~2.7|~3.0",
"symfony/expression-language": "~2.7|~3.0",
"symfony/framework-bundle": "~2.7,>=2.7.26|~3.0",
"symfony/options-resolver": "~2.7|~3.0",
"symfony/translation": "~2.7|~3.0",
"symfony/serializer": "~2.7|~3.0"
},
"autoload": {
"psr-4": { "Fazland\\ElasticaBundle\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Fazland\\ElasticaBundle\\Tests\\": "tests/" }
},
"extra": {
"branch-alias": {
"dev-master": "5.0.x-dev"
}
}
}