-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
35 lines (35 loc) · 960 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
30
31
32
33
34
35
{
"name": "petkopara/multi-search-bundle",
"description": "Symfony bundle for Multi Criteria Search for doctrine entities using Form or Service.",
"keywords": ["multi-search","criteria", "query builder", "symfony3", "doctrine"],
"type": "symfony-bundle",
"homepage": "https://github.com/petkopara/PetkoparaMultiSearchBundle",
"license": "MIT",
"authors": [
{
"name": "Petko Petkov",
"email": "petkopara@gmail.com"
}
],
"require": {
"symfony/form": "^4.0|^5.0|^6.0|^7.0",
"doctrine/orm": "^2.5|^3.0"
},
"require-dev": {
"phpunit/phpunit": "~4.8"
},
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Petkopara\\MultiSearchBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}