-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 867 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
{
"name": "ferdynator/clamav-constraint",
"license": "MIT",
"description": "This repository provides a virus scan validator constraint for Symfony-based projects.",
"keywords": [ "clamav", "quahog", "virus", "fileupload", "bundle", "symfony" ],
"homepage": "https://github.com/ferdynator/clamav-constraint",
"license": "MIT",
"authors": [
{
"name": "Frederik Schubert",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"ferdynator\\ClamAvConstraint\\": ""
},
"exclude-from-classmap": [ "/Tests/" ]
},
"autoload-dev": {
"psr-4": {
"ferdynator\\ClamAvConstraint\\Tests\\": "tests/"
}
},
"require": {
"php": ">=7.2",
"symfony/http-foundation": "*",
"symfony/validator": "*",
"xenolope/quahog": "^2.1"
},
"require-dev": {
"phpunit/phpunit": "^7.3"
}
}