-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.26 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.26 KB
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
{
"name": "hrevert/ht-country-module",
"description": "A Zend Framework 2 module for country and subdivision data.",
"type": "library",
"keywords": [
"zf2",
"module",
"zendframework",
"country",
"geography",
"location"
],
"license": "MIT",
"homepage": "https://github.com/ojhaujjwal/HtCountryModule",
"authors": [
{
"name": "Hrevert Technologies",
"email": "info@hrevert.com"
}
],
"require": {
"php": ">=5.4",
"phine/country": "~1.0"
},
"require-dev": {
"zendframework/zend-servicemanager": "~2.2",
"zendframework/zend-modulemanager": "~2.2",
"zendframework/zend-stdlib": "~2.2",
"zendframework/zend-validator": "~2.2"
},
"suggest": {
"zendframework/zend-servicemanager": "To use the services provided by this module",
"zendframework/zend-modulemanager": "If you want to use it as a Zend Framework 2 module",
"zendframework/zend-stdlib": "To use hydrator strategy provided by this module",
"zendframework/zend-validator": "If you want to use it as a country validator"
},
"autoload": {
"psr-4": {
"HtCountryModule\\": "src/"
}
}
}