-
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) · 799 Bytes
/
composer.json
File metadata and controls
42 lines (42 loc) · 799 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
37
38
39
40
41
42
{
"name" : "cvsolutions/zend-snippets",
"description" : "Zend Framework 2 Snippets.",
"type" : "zf2-module",
"authors" : [{
"name" : "Concetto Vecchio",
"email" : "info@cvsolutions.it",
"homepage" : "http://cvsolutions.it",
"role" : "PHP Developer"
}
],
"keywords" : [
"zf2",
"Zend Snippets",
"cvsolutions"
],
"homepage" : "https://github.com/cvsolutions/ZendSnippets",
"license" : [
"BSD-3-Clause"
],
"require" : {
"php" : ">=5.3.3"
},
"autoload" : {
"psr-0" : {
"ZendSnippets" : "src"
},
"classmap" : [
"./Module.php"
]
},
"minimum-stability" : "beta",
"support" : {
"email" : "info@cvsolutions.it"
},
"repositories" : [{
"name" : "ZendSnippets",
"type" : "git",
"url" : "https://github.com/cvsolutions/ZendSnippets.git"
}
]
}