-
Notifications
You must be signed in to change notification settings - Fork 66
/
composer.json
49 lines (49 loc) · 993 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
41
42
43
44
45
46
47
48
49
{
"name": "tmw/fpdm",
"description": "PDF form filling using FPDM Class written by FPDF author Olivier",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Olivier Plathey",
"email": "oliver@fpdf.org",
"homepage": "http://www.fpdf.org/",
"role": "Author"
},
{
"name": "codeshell",
"role": "Developer",
"homepage": "https://github.com/codeshell/"
}
],
"homepage": "https://github.com/codeshell/fpdm",
"autoload": {
"classmap": [
"src/fpdm.php",
"src/filters/"
]
},
"repositories": [
{
"type": "git",
"url": "https://github.com/codeshell/fpdm",
"name": "GitHub"
}
],
"require": {
"php": ">=5.3.0"
},
"keywords": [
"FPDM",
"PDF",
"forms",
"fields",
"fill",
"populate",
"FPDF"
],
"support": {
"issues": "https://github.com/codeshell/fpdm/issues",
"source": "https://github.com/codeshell/fpdm/tree/master"
}
}