-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
33 lines (33 loc) · 880 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
{
"name" : "los/lospdf",
"description" : "ZF2 module to wrapper some pdf generation libraries",
"require" : {
"php" : ">=5.4",
"zendframework/zendframework" : ">=2.3.2,<3.0.0"
},
"require-dev" : {
"satooshi/php-coveralls" : "dev-master",
"phpunit/phpunit" : "~4.4"
},
"authors" : [ {
"name" : "Leandro Silva",
"email" : "leandro@leandrosilva.info",
"homepage" : "http://leandrosilva.info"
} ],
"keywords" : [ "los", "pdf", "mpdf", "zf2" ],
"autoload" : {
"psr-0" : {
"LosPdf\\" : "src/"
},
"psr-4" : {
"LosPdf\\" : "src/"
}
},
"suggest" : {
"los/loslog" : "los/loslog for logging",
"los/losui" : "los/losui for twitter bootstrap 3 styling, jquery, chosen and other libraries",
"mpdf/mpdf" : "mpdf/mpdf for html to pdf convertion"
},
"type" : "library",
"license" : "BSD-3-Clause"
}