forked from rospdf/pdf-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.29 KB
/
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
51
52
{
"name": "rospdf/pdf-php",
"type": "library",
"description": "The R&OS Pdf class supports the creation of PDF documents without any adiditional modules or extensions.",
"homepage": "https://github.com/rospdf/pdf-php",
"license": "MIT",
"authors": [
{
"name": "Ole Koeckemann",
"email": "[email protected]",
"role": "Project Head / Developer"
},
{
"name": "Lars Olesen",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Sune Jensen",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Nicola Asuni",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Wayne Munro",
"email": "[email protected]",
"role": "Founder / Inactive"
}
],
"autoload": {
"files": [
"src/Cpdf.php",
"src/Cezpdf.php"
]
},
"require": {
"php": ">=5.3.2"
},
"require-dev": {
"squizlabs/php_codesniffer": "2.8.*"
},
"extra": {
"branch-alias": {
"dev-experimental": "0.13.x-dev",
"dev-master": "0.12.x-dev"
}
}
}