-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
40 lines (40 loc) · 868 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
{
"name": "matthewpallotta/clamavphp",
"description": "PHP ClamAV library for scanning files, locally or via sockets",
"type": "library",
"keywords": [
"matthewpallotta",
"clamav",
"php"
],
"authors": [
{
"name":"Matthew Pallotta",
"email": "matt@advanced.im",
"homepage": "https://www.mattpallotta.com"
}
],
"support": {
"issues": "https://github.com/matthewpallotta/php-clamav/issues",
"email": "support@advanced.im",
"source": "https://github.com/matthewpallotta/php-clamav"
},
"homepage": "https://www.advanced.im/clamavphp",
"license": "MIT",
"require": {
"php": "^7.0"
},
"autoload": {
"psr-4": {
"Matthewpallotta\\Clamavphp\\": "src/"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf"
}
}