-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
27 lines (27 loc) · 813 Bytes
/
composer.json
File metadata and controls
27 lines (27 loc) · 813 Bytes
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
{
"name": "librenms/ip-util",
"description": "IPv4 and IPv6 Address/Network parsing utility classes",
"type": "project",
"keywords": ["network", "IP", "ipv6", "ipv4", "subnet", "cidr", "IP-Tools"],
"homepage": "http://www.librenms.org/",
"license": "GPL-3.0-or-later",
"support": {
"source": "https://github.com/librenms/librenms/",
"docs": "http://docs.librenms.org/",
"forum": "https://community.librenms.org/",
"issues": "https://discord.gg/V8s5JZJ"
},
"require": {
"php": ">=5.6.4"
},
"require-dev": {
"phpunit/phpunit": ">5.7",
"squizlabs/php_codesniffer": ">=2.9.1"
},
"autoload": {
"psr-4": {
"LibreNMS\\": "LibreNMS",
"LibreNMS\\Tests\\": "tests"
}
}
}