-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
42 lines (38 loc) · 1015 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
36
37
38
39
40
41
42
{
"name": "dms/dms-filter",
"type": "library",
"description": "DMS Filter provides Annotation based entity filtering.",
"keywords": ["filter", "dms"],
"homepage": "https://github.com/rdohms/dms-filter",
"license": "MIT",
"authors": [
{
"name": "Rafael Dohms",
"homepage": "http://doh.ms"
}
],
"require": {
"php": "^8.2"
},
"require-dev": {
"ext-pcov": "*",
"phpunit/phpunit": "^11",
"laminas/laminas-filter": "^2.37",
"squizlabs/php_codesniffer": "3.*",
"symfony/cache": "^6.4 | ^7.0"
},
"autoload": {
"psr-0": {
"DMS": ["src","tests"]
}
},
"suggest": {
"laminas/laminas-filter": "Use Laminas Filters via DMS Filter",
"ext-mbstring": "for encoding safety"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}