forked from lexik/LexikFormFilterBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
29 lines (29 loc) · 918 Bytes
/
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
{
"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",
"authors": [
{
"name": "Cedric Girard",
"email": "[email protected]"
},
{
"name": "Dev Lexik",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.2",
"symfony/framework-bundle": "2.1.*,<2.2-dev",
"symfony/form": "2.1.*",
"doctrine/orm": "*"
},
"autoload": {
"psr-0": { "Lexik\\Bundle\\FormFilterBundle": "" }
},
"target-dir": "Lexik/Bundle/FormFilterBundle"
}