-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 780 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 780 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
33
34
35
36
{
"name": "bemcasei/whois-module",
"description": "ZF3 Module to query whois.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "William Hoffmann",
"email": "williamhoffmann@outlook.com",
"role": "Developer"
}
],
"homepage": "https://github.com/bemcasei/WhoisModule",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.0",
"phois/whois": "dev-master",
"zendframework/zend-modulemanager": "^2.7",
"zendframework/zend-mvc": "^3.1",
"zendframework/zend-servicemanager": "^3.3"
},
"autoload": {
"psr-4": {
"WhoisModule\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WhoisModuleTest\\": "test/"
}
},
"config": {
"sort-packages": true
}
}