forked from markrogoyski/ipv4-subnet-calculator-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
30 lines (30 loc) · 834 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
{
"name": "markrogoyski/ipv4-subnet-calculator",
"type": "library",
"description": "Network calculator for subnet mask and other classless (CIDR) network information.",
"keywords": ["ipv4", "subnet", "calculator", "network", "cidr", "address", "ip"],
"homepage": "https://github.com/markrogoyski/ipv4-subnet-calculator-php",
"require": {
"php": ">=5.3.0"
},
"require-dev": {
"phpunit/phpunit": "5.*",
"satooshi/php-coveralls": "^1.0",
"squizlabs/php_codesniffer": "2.*"
},
"autoload": {
"psr-4": { "IPv4\\": "src/" }
},
"autoload-dev": {
"psr-4": { "IPv4\\Tests\\": "tests/" }
},
"authors": [
{
"name": "Mark Rogoyski",
"email": "[email protected]",
"homepage": "https://github.com/markrogoyski",
"role": "Developer"
}
],
"license": "MIT"
}