-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
45 lines (45 loc) · 951 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
43
44
45
{
"name": "pato05/amphp-clamav",
"description": "An asynchronous clamd wrapper written with amphp/socket",
"type": "library",
"require": {
"php": "^8.0",
"amphp/amp": "^3.0",
"amphp/socket": "^2.0",
"ext-sockets": "*"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Amp\\ClamAV\\": "lib/"
},
"files": [
"lib/functions.php"
]
},
"authors": [
{
"name": "Pato05",
"email": "[email protected]"
}
],
"require-dev": {
"amphp/php-cs-fixer-config": "^2.0",
"amphp/file": "^3.0",
"amphp/phpunit-util": "^3.0",
"phpunit/phpunit": "^9.6"
},
"scripts": {
"check": [
"@fix",
"@test"
],
"fix": "@php ./vendor/bin/php-cs-fixer fix",
"test": "@php -dzend.assertions=1 -dassert.exception=1 -dxdebug.mode=coverage ./vendor/bin/phpunit --coverage-text"
},
"config": {
"allow-plugins": {
"phabel/phabel": false
}
}
}