forked from floriansemm/SolrBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (33 loc) · 1.01 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
{
"name": "floriansemm/solr-bundle",
"type": "symfony-bundle",
"description": "Symfony2 Solr integration bundle",
"keywords": ["search", "index", "symfony", "solr"],
"homepage": "https://github.com/floriansemm/SolrBundle",
"license": "MIT",
"require": {
"php": ">=5.3.2",
"solarium/solarium": "*"
},
"require-dev": {
"doctrine/doctrine-module": "*",
"doctrine/doctrine-orm-module": "*",
"doctrine/mongodb": "*",
"doctrine/mongodb-odm": "*",
"symfony/dependency-injection": "*",
"symfony/http-kernel": "*",
"symfony/config": "*",
"symfony/doctrine-bridge": "*"
},
"minimum-stability": "alpha",
"autoload": {
"psr-0": {
"FS\\SolrBundle": ""
}
},
"suggest": {
"doctrine/mongodb": "Required if you want to use the MongoDB ODM features",
"doctrine/mongodb-odm": "Required if you want to use the MongoDB ODM features"
},
"target-dir": "FS/SolrBundle"
}