forked from petkopara/PetkoparaMultiSearchBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 843 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 843 Bytes
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
{
"name": "sgloe/multi-search-bundle",
"description": "Symfony bundle for Multi Criteria Search for doctrine entities using Form or Service.",
"keywords": ["multi-search","criteria", "query builder", "symfony", "doctrine"],
"type": "symfony-bundle",
"homepage": "https://github.com/sgloe/MultiSearchBundle",
"license": "MIT",
"authors": [
{
"name": "Sascha Gloe"
}
],
"require": {
"php": "^8.5",
"symfony/form": "^7.4",
"doctrine/orm": "^3.0"
},
"require-dev": {
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Sgloe\\MultiSearchBundle\\": ""
},
"exclude-from-classmap": [
]
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}