-
Notifications
You must be signed in to change notification settings - Fork 73
/
composer.json
49 lines (49 loc) · 1.17 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
{
"name": "floriansemm/solr-bundle",
"type": "symfony-bundle",
"description": "Symfony Solr integration bundle",
"keywords": [
"search",
"index",
"symfony",
"solr"
],
"homepage": "https://github.com/floriansemm/SolrBundle",
"license": "MIT",
"require": {
"php": "^7.0",
"solarium/solarium": "^4.0",
"symfony/dependency-injection": "^2.3|^3.0|^4.0",
"symfony/http-kernel": "^2.3|^3.0|^4.0",
"symfony/config": "^2.3|^3.0|^4.0",
"symfony/doctrine-bridge": "^2.3|^3.0|^4.0",
"minimalcode/search": "^1.0",
"ramsey/uuid": "^3.5",
"myclabs/deep-copy": "^1.6",
"doctrine/annotations": "^1.4"
},
"require-dev": {
"doctrine/mongodb-odm-bundle": "*",
"doctrine/orm": "^2.3",
"phpunit/phpunit": "^5.4"
},
"minimum-stability": "RC",
"autoload": {
"psr-0": {
"FS\\SolrBundle": ""
}
},
"config": {
"bin-dir": "bin"
},
"extras": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"suggest": {
"doctrine/orm": "Required if you want to use the Doctrine ORM",
"doctrine/mongodb-odm-bundle": "Required if you want to use the MongoDB ODM"
},
"target-dir": "FS/SolrBundle"
}