-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 957 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 957 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
30
31
{
"name": "foolz/inet",
"type": "library",
"description": "A PHP implementation of decimal IPs. Converts IPs from presentation to decimal and viceversa. Very useful to store IPs in database as numbers instead of string, in example in a decimal(39,0) column.",
"keywords": ["IP", "decimal", "presentation", "conversion", "ipv4", "ipv6"],
"homepage": "http://www.foolz.us",
"license": "CC-BY-SA-3.0",
"authors": [
{
"name": "Sander Marechal",
"homepage": "http://stackoverflow.com/users/103202/sander-marechal"
},
{
"name": "foolz",
"email": "support@foolz.us"
}
],
"support": {
"email": "support@foolz.us",
"irc": "irc://irc.irchighway.net/fooldriver"
},
"require": {
"php": ">=5.3.0",
"ext-bcmath": "*"
},
"autoload": {
"psr-4": {
"Foolz\\Inet\\": "src/"
}
}
}