forked from lexik/LexikFormFilterBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.33 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
{
"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": ["Symfony", "bundle", "form", "filter", "doctrine"],
"homepage": "https://github.com/lexik/LexikFormFilterBundle",
"license": "MIT",
"prefer-stable": true,
"authors": [
{
"name": "Cedric Girard",
"email": "[email protected]"
},
{
"name": "Dev Lexik",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1",
"doctrine/orm": "^2.10",
"symfony/form": "^4.4|^5.1|^6.0",
"symfony/framework-bundle": "^4.4|^5.1|^6.0"
},
"require-dev": {
"doctrine/doctrine-bundle": "^1.8 || ^2.0",
"doctrine/mongodb-odm-bundle": "^4.1",
"symfony/phpunit-bridge": "^4.4|^5.1|^6.0",
"symfony/var-dumper": "^4.4|^5.1|^6.0"
},
"autoload": {
"psr-4": { "Lexik\\Bundle\\FormFilterBundle\\": "" }
},
"config": {
"sort-packages": true
},
"suggest": {
"alcaeus/mongo-php-adapter": "Install this package if using the PHP 7 MongoDB Driver"
},
"scripts": {
"test": [
"vendor/bin/simple-phpunit"
]
}
}