forked from sineflow/clamav
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
33 lines (33 loc) · 1004 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
{
"name": "sineflow/clamav",
"description": "ClamAV PHP Client for Symfony",
"keywords": ["clamav", "bundle", "symfony"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Plamen Mishev",
"email": "pmishev@sineflow.com",
"homepage": "http://sineflow.com/"
}
],
"require": {
"php": "^7.3 || ^8.0",
"symfony/http-kernel": "~4.0 || ~5.0 || ~6.0 || ~7.0",
"symfony/config": "~4.0 || ~5.0 || ~6.0 || ~7.0",
"symfony/dependency-injection": "~4.0 || ~5.0 || ~6.0 || ~7.0",
"symfony/yaml": "~4.0 || ~5.0 || ~6.0 || ~7.0",
"ext-sockets": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"squizlabs/php_codesniffer": "^3.0",
"php-coveralls/php-coveralls": "^2.5"
},
"autoload": {
"psr-4": {"Sineflow\\ClamAV\\": "src/"}
},
"autoload-dev": {
"psr-4": {"Sineflow\\ClamAV\\Tests\\": "tests/"}
}
}