-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
38 lines (38 loc) · 900 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
{
"name": "marknl/iodef",
"description": "Library for parsing IODEF in PHP",
"keywords": ["iodef", "rfc5070"],
"homepage": "http://e-rave.nl/iodef",
"type": "library",
"license": "GPL-2.0",
"authors": [
{
"name": "Mark Stunnenberg",
"email": "[email protected]",
"homepage": "http://e-rave.nl/",
"role": "Lead"
}
],
"support": {
"issues": "https://github.com/marknl/iodef/issues",
"source": "https://github.com/marknl/iodef"
},
"require": {
"php": ">=7.0",
"sabre/xml": "~2.0.0",
"vlucas/valitron": "~1.4.2"
},
"autoload": {
"psr-4": {
"Marknl\\Iodef\\": "src/"
},
"psr-0": {
"src/": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}