-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (44 loc) · 1.06 KB
/
composer.json
File metadata and controls
57 lines (44 loc) · 1.06 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
{
"name": "mpdf/qrcode",
"type": "library",
"description": "QR code generator for mPDF",
"keywords": ["php", "pdf", "mpdf", "qr", "qrcode"],
"license": "LGPL-2.1-or-later",
"authors": [
{
"name": "Matěj Humpál",
"role": "maintainer"
},
{
"name": "Laurent Minguet",
"role": "author"
}
],
"require": {
"php": "^5.6 || ^7.0 || ^8.0",
"paragonie/random_compat": "^1.4|^2.0|^9.99.99"
},
"require-dev": {
"yoast/phpunit-polyfills": "^1.0",
"mockery/mockery": "^0.9.5 || ^1.0",
"squizlabs/php_codesniffer": "^3.4",
"tracy/tracy": "^2.5"
},
"scripts": {
"cs": "@php vendor/bin/phpcs -v --report-width=160 --standard=ruleset.xml --severity=1 --warning-severity=0 --extensions=php src tests",
"test": "@php vendor/bin/phpunit",
"coverage": "@php vendor/bin/phpunit --coverage-text"
},
"suggest": {
"ext-gd": "To output QR codes to PNG files",
"ext-simplexml": "To output QR codes to SVG files"
},
"autoload": {
"psr-4": {
"Mpdf\\QrCode\\": "src/"
}
},
"autoload-dev": {
"files": [ "tests/functions.php" ]
}
}