forked from robaks/Locations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (42 loc) · 985 Bytes
/
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
41
42
43
44
{
"name": "robaks/locations",
"description": "ZF2 Module for managing locations",
"type": "library",
"license": "BSD-3-Clause",
"keywords": [
"zf2",
"locations"
],
"homepage": "https://github.com/robaks/Locations",
"authors": [
{
"name": "robaks",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "git",
"url": "https://github.com/t4web/base.git"
},
{
"type": "git",
"url": "https://github.com/t4web/actioninjections.git"
}
],
"require": {
"php": ">=5.5",
"zendframework/zendframework": "~2.5.0",
"t4web/actioninjections": "dev-master",
"t4web/base": "dev-master"
},
"autoload": {
"psr-0": {
"RoLocations": "src/",
"RoLocationsTest\\UnitTest": "tests/UnitTest/"
},
"classmap": [
"./Module.php"
]
}
}