-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 1.33 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "outsanity/ip-analysis",
"description": "Library for analyzing IP addresses",
"type": "library",
"license": "BSD-2-Clause",
"authors": [
{
"name": "Doug Harple",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4.3",
"symfony/http-foundation": ">=5.4"
},
"require-dev": {
"outsanity/phpcs": ">=0.4.0",
"phpstan/phpstan": "^1.12.6",
"phpunit/phpunit": "^9.6.21",
"rector/rector": "^1.2.7",
"squizlabs/php_codesniffer": "^3.10.3",
"symfony/serializer": ">=5.4.44"
},
"suggest": {
"symfony/serializer": "Serialization support for SpecialAddressBlock"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"audit": {
"abandoned": "fail"
}
},
"autoload": {
"psr-4": {
"Outsanity\\IpAnalysis\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Outsanity\\Tests\\": "tests/"
}
},
"scripts": {
"phpcbf": "phpcbf",
"phpcs": "phpcs",
"phpstan": "phpstan analyse",
"test": "phpunit"
}
}