-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcomposer.json
executable file
·50 lines (50 loc) · 957 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
45
46
47
48
49
50
{
"name" : "zendcart/zendcart",
"description" : "Cart in ZF2",
"type" : "zf2-module",
"authors" : [{
"name" : "Vincenzo Provenza",
"email" : "[email protected]",
"homepage" : "http://ilovecode.it/",
"role" : "Developer"
}, {
"name" : "Concetto Vecchio",
"email" : "[email protected]",
"homepage" : "http://cvsolutions.it/",
"role" : "Developer"
}
],
"keywords" : [
"zend cart",
"cart",
"e-commerce",
"zf2 module",
"carrello zf2"
],
"homepage" : "https://github.com/vikey89/ZendCart",
"license" : [
"BSD-3-Clause"
],
"require" : {
"php" : ">=5.3.3",
"zendframework/zendframework" : "2.*"
},
"autoload" : {
"psr-0" : {
"ZendCart" : "src"
},
"classmap" : [
"./Module.php"
]
},
"minimum-stability" : "beta",
"support" : {
"email" : "[email protected]"
},
"repositories" : [{
"name" : "ZendCart",
"type" : "git",
"url" : "https://github.com/vikey89/ZendCart.git"
}
]
}