forked from paingwin/fpdm
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
54 lines (54 loc) · 1.16 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
53
54
{
"name": "tyclipso/fpdm",
"description": "PDF form filling using FPDM Class written by FPDF author Olivier. Checkboxes resolve to Off unless stated in the file",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Olivier Plathey / Spencer Wallace",
"email": "[email protected]",
"homepage": "http://www.fpdf.org/",
"role": "Author"
},
{
"name": "paingwin",
"role": "Developer",
"homepage": "https://github.com/paingwin/fpdm"
},
{
"name": "tyclipso",
"role": "Developer",
"homepage": "https://github.com/tyclipso/fpdm"
}
],
"homepage": "https://github.com/tyclipso/fpdm",
"autoload": {
"classmap": [
"src/fpdm.php",
"src/filters/"
]
},
"repositories": [
{
"type": "git",
"url": "https://github.com/tyclipso/fpdm",
"name": "GitHub"
}
],
"require": {
"php": ">=5.3.0"
},
"keywords": [
"FPDM",
"PDF",
"forms",
"fields",
"fill",
"populate",
"FPDF"
],
"support": {
"issues": "https://github.com/tyclipso/fpdm/issues",
"source": "https://github.com/tyclipso/fpdm/tree/master"
}
}