-
Notifications
You must be signed in to change notification settings - Fork 36
/
composer.json
40 lines (40 loc) · 899 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
{
"name": "robregonm/yii2-pdf",
"description": "Yii 2 PDF Response Formatter",
"keywords": [
"yii",
"yii2",
"pdf",
"response",
"formatter",
"reports",
"documents"
],
"type": "yii2-extension",
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/robregonm/yii2-pdf/issues?state=open",
"forum": "http://www.yiiframework.com/forum/",
"wiki": "http://www.yiiframework.com/wiki/",
"source": "https://github.com/robregonm/yii2-pdf"
},
"authors": [
{
"name": "robregonm",
"email": "[email protected]",
"homepage": "http://obregon.co",
"role": "Author"
}
],
"require": {
"php": "^5.6 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0",
"yiisoft/yii2": "*",
"yiisoft/yii2-composer": "*",
"mpdf/mpdf": "^8.0"
},
"autoload": {
"psr-4": {
"robregonm\\pdf\\": ""
}
}
}