-
Notifications
You must be signed in to change notification settings - Fork 25
/
composer.json
35 lines (32 loc) · 970 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": "dms/dms-filter-bundle",
"type": "symfony-bundle",
"description": "DMS Filter Bundle, makes Annotation based entity filtering available in Symfony",
"keywords": ["filter", "dms", "symfony", "bundle"],
"homepage": "https://github.com/rdohms/dms-filter-bundle",
"license": "MIT",
"authors": [
{
"name": "Rafael Dohms",
"homepage": "http://doh.ms"
}
],
"require": {
"php": "^8.2",
"dms/dms-filter": "^6.0",
"symfony/config": "^6.4 | ^7.0",
"symfony/yaml": "^6.4 | ^7.0",
"symfony/framework-bundle": "^6.4 | ^7.0",
"symfony/form": "^6.4 | ^7.0"
},
"autoload": {
"psr-4": {
"DMS\\Bundle\\FilterBundle\\": "./src/DMS/Bundle/FilterBundle"
}
},
"require-dev": {
"ext-pcov": "*",
"phpunit/phpunit": "^11",
"squizlabs/php_codesniffer": "3.*"
}
}