generated from Muetze42/repository-skeleton
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 965 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
{
"name": "norman-huth/virus-total-php",
"description": "A wrapper for the VirusTotal API V3.",
"license": "MIT",
"homepage": "https://huth.it",
"support": {
"issues": "https://github.com/Muetze42/virus-total-php/issues",
"source": "https://github.com/Muetze42/virus-total-php"
},
"authors": [
{
"name": "Norman Huth",
"homepage": "https://huth.it"
}
],
"autoload": {
"psr-4": {
"NormanHuth\\VirusTotal\\": "src/"
}
},
"require": {
"php": "^8.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.3|^7.0",
"ext-fileinfo": "*"
},
"extra": {
"laravel": {
"providers": [
"NormanHuth\\VirusTotal\\Providers\\ServiceProvider"
],
"aliases": {
"VirusTotal": "NormanHuth\\VirusTotal\\Facades\\VirusTotal"
}
}
}
}