-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 845 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 845 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
32
{
"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": "Zander Baldwin",
"email": "hello@zanderbaldwin.com",
"homepage": "http://zanderbaldwin.com"
}
],
"autoload": {
"psr-4": {
"Darsyn\\IP\\": "src/"
}
},
"require": {
"php": ">=5.5"
},
"autoload-dev": {
"psr-4": {
"Darsyn\\IP\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "~4.8",
"doctrine/dbal": "~2.3"
}
}