-
Notifications
You must be signed in to change notification settings - Fork 42
/
composer.json
34 lines (34 loc) · 973 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
{
"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": ">=7.2.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"php-coveralls/php-coveralls": "^2.0",
"squizlabs/php_codesniffer": ">=3.6",
"phpstan/phpstan": "*",
"phpmd/phpmd": "^2.6",
"phploc/phploc": "*",
"php-parallel-lint/php-parallel-lint": "^1.2"
},
"autoload": {
"psr-4": { "IPv4\\": "src/" }
},
"autoload-dev": {
"psr-4": { "IPv4\\Tests\\": "tests/" }
},
"authors": [
{
"name": "Mark Rogoyski",
"email": "mark@rogoyski.com",
"homepage": "https://github.com/markrogoyski",
"role": "Lead Developer"
}
],
"license": "MIT"
}