-
Notifications
You must be signed in to change notification settings - Fork 21
/
composer.json
40 lines (40 loc) · 1.01 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
{
"name": "darsyn/ip",
"description": "An immutable IP Address value object that provides several different notations, including helper functions.",
"license": "MIT",
"keywords": ["library", "value-object", "immutable", "ip", "ipv4", "ipv6"],
"type": "library",
"homepage": "https://github.com/darsyn/ip",
"authors": [
{
"name": "Zan Baldwin",
"email": "[email protected]",
"homepage": "https://zanbaldwin.com"
}
],
"autoload": {
"psr-4": {
"Darsyn\\IP\\": "src/"
}
},
"require": {
"php-64bit": ">=5.6",
"php-ipv6": ">=5.6",
"ext-ctype": "*"
},
"autoload-dev": {
"psr-4": {
"Darsyn\\IP\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "*"
},
"prefer-stable": true,
"config": {
"sort-packages": true
},
"suggest": {
"darsyn/ip-doctrine": "to use IP as a Doctrine column type"
}
}