-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
79 lines (79 loc) · 2.16 KB
/
Copy pathcomposer.json
File metadata and controls
79 lines (79 loc) · 2.16 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "jeidison/signer-php",
"description": "Open-source PHP library for PDF digital signing with multiple signatures, RFC3161 timestamping, PAdES profiles, and PDF protection",
"type": "library",
"keywords": [
"php",
"pdf",
"signer",
"digital-signature",
"multiple-signatures",
"pades",
"rfc3161",
"timestamp",
"docmdp",
"icp-brasil"
],
"bin": [
"bin/signer-sign",
"bin/signer-inspect",
"bin/signer-doctor"
],
"require": {
"php": "^8.2",
"ext-openssl": "*",
"ext-curl": "*",
"ext-zlib": "*",
"ext-fileinfo": "*"
},
"require-dev": {
"pestphp/pest": "^3.0",
"laravel/pint": "^1.20",
"symfony/var-dumper": "^6.4.2",
"vimeo/psalm": "^6.15",
"deptrac/deptrac": "^4.6",
"infection/infection": "^0.29",
"roave/security-advisories": "dev-latest"
},
"license": "MIT",
"autoload": {
"psr-4": {
"SignerPHP\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SignerPHP\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Jeidison Farias"
}
],
"minimum-stability": "dev",
"scripts": {
"tests": "vendor/bin/pest --configuration phpunit.xml tests",
"tests:coverage": "vendor/bin/pest --configuration phpunit.xml tests --coverage --min=98.5",
"pint:fix": "vendor/bin/pint",
"pint:check": "vendor/bin/pint --test",
"security:audit": "composer audit --no-interaction",
"psalm": "vendor/bin/psalm --no-progress",
"deptrac": "vendor/bin/deptrac analyse --no-progress",
"infection": "vendor/bin/infection --threads=max --min-msi=65 --min-covered-msi=70",
"quality:all": [
"@pint:check",
"@security:audit",
"@tests:coverage",
"@psalm",
"@deptrac",
"@infection"
]
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"infection/extension-installer": true
}
}
}