-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
40 lines (40 loc) · 970 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": "setasign/fpdi-protection",
"homepage": "https://github.com/Setasign/fpdi-protection",
"description": "A FPDI compatible version of the FPDF_Protection script.",
"type": "library",
"keywords": [
"pdf",
"fpdi",
"fpdf",
"protection",
"password"
],
"license": "MIT",
"autoload": {
"psr-4": {
"setasign\\FpdiProtection\\": "src/"
}
},
"require": {
"php": "^5.6 || ^7.0 || ^8.0 || ^8.1 || ^8.2",
"ext-openssl": "*",
"setasign/fpdi": "^2.3.6",
"setasign/fpdf": "^1.8.5"
},
"authors": [
{
"name": "Jan Slabon",
"email": "jan.slabon@setasign.com",
"homepage": "https://www.setasign.com"
}
],
"require-dev": {
"phpunit/phpunit": "~5.7"
},
"autoload-dev": {
"psr-4": {
"setasign\\FpdiProtection\\": "tests/"
}
}
}