forked from lexik/LexikFormFilterBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.13 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
{
"name": "lexik/form-filter-bundle",
"type": "symfony-bundle",
"description": "This bundle aim to provide classes to build some form filters and then build a doctrine query from this form filter.",
"keywords": ["Symfony2", "bundle", "form", "filter", "doctrine"],
"homepage": "https://github.com/lexik/LexikFormFilterBundle",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Cedric Girard",
"email": "[email protected]"
},
{
"name": "Dev Lexik",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.9",
"symfony/framework-bundle": "~2.8|~3.0",
"symfony/form": "~2.8|~3.0",
"doctrine/orm": "^2.4.8"
},
"require-dev": {
"doctrine/mongodb-odm-bundle": "~3.0",
"phpunit/phpunit": "~3.7"
},
"autoload": {
"psr-4": { "Lexik\\Bundle\\FormFilterBundle\\": "" }
},
"config": {
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-master": "5.x.x-dev"
}
}
}