This repository was archived by the owner on Sep 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.24 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.24 KB
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
{
"name": "tomfun/brander-eav",
"type": "symfony-bundle",
"description": "helps to create entity that have different attributes (fields) in same database. Also provide integration with elastic search friendsofsymfony/elastica-bundle",
"keywords": [
"elastica",
"elasticsearch",
"EAV",
"entity attribute value",
"search"
],
"license": "MIT",
"repositories": [
{
"type": "vcs",
"url": "git@github.com:igrvak/FOSElasticaBundle.git"
}
],
"authors": [
{
"name": "Grigory Kotov",
"email": "tomfun1990@gmail.com"
},
{
"name": "Bogdan Yurov",
"email": "bogdan@yurov.me"
},
{
"name": "Vladimir Odesskij",
"email": "odesskij1992@gmail.com"
}
],
"require": {
"symfony/symfony": "^3.1",
"friendsofsymfony/rest-bundle": "^2",
"jms/di-extra-bundle": "^1",
"doctrine/orm": "^2",
"friendsofsymfony/jsrouting-bundle": "^1.5.4",
"doctrine/doctrine-cache-bundle": "^1",
"tomfun/brander-elastica-skeleton": "^1.0.0"
},
"require-dev":{
"doctrine/doctrine-fixtures-bundle": "^2",
"nelmio/api-doc-bundle": "^2",
"fzaninotto/faker": "^1"
},
"autoload": {
"psr-4": {
"Brander\\Bundle\\EAVBundle\\": "src/"
}
}
}