-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 847 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 847 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
28
29
{
"name": "leth/ip-address",
"description": "IPv4 and IPv6 address and subnet classes with awesome utility functions.",
"license": "LGPL-3.0-or-later",
"support": {
"source": "https://github.com/leth/PHP-IPAddress",
"issues": "https://github.com/leth/PHP-IPAddress/issues"
},
"require": {
"php": ">=8.1",
"pear/math_biginteger": "1.0.3"
},
"require-dev": {
"phpunit/phpunit": "^9",
"phpstan/phpstan": "^1",
"phpstan/phpstan-phpunit": "^1",
"phpstan/phpstan-deprecation-rules": "^1",
"phpstan/phpstan-strict-rules": "^1"
},
"autoload": {
"psr-4": {
"Leth\\IPAddress\\": "classes/Leth/IPAddress"
}
},
"scripts": {
"test": "vendor/bin/phpunit --configuration phpunit.xml.dist --coverage-text",
"phpstan": "phpstan analyse --memory-limit=2G --error-format=table"
}
}