-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (63 loc) · 1.51 KB
/
composer.json
File metadata and controls
63 lines (63 loc) · 1.51 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "luka/network-address-types",
"description": "Provides typed value objects for network addresses (IP v4/v6 and MAC)",
"type": "library",
"license": "LGPL-3.0",
"authors": [
{
"name": "Axel Helmert",
"email": "axel.helmert@luka.de"
}
],
"autoload": {
"psr-4": {
"LUKA\\Network\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LUKATest\\Network\\": "tests/"
},
"classmap": [
"shim/override.attribute.php",
"shim/deprecated.attribute.php"
]
},
"require": {
"php": "8.2 - 8.4",
"ext-gmp": "*",
"ext-json": "*"
},
"require-dev": {
"doctrine/coding-standard": "^13.0.1",
"phpunit/phpunit": "^10.5",
"vimeo/psalm": "^6"
},
"scripts": {
"test": "phpunit --testdox",
"analyse": "psalm",
"cs-fix": "phpcbf",
"cs-check": [
"mkdir -p .build/php_codesniffer/",
"phpcs"
],
"infection-test": "infection --min-msi=84 --min-covered-msi=86",
"check": [
"@test",
"@analyse",
"@cs-check"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"branch-alias": {
"dev-master": "1.2.x-dev",
"dev-develop": "1.3.x-dev"
}
}
}