-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
85 lines (85 loc) · 2.54 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
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
80
81
82
83
84
85
{
"name": "laurentmuller/fpdf2",
"homepage": "https://github.com/laurentmuller/fpdf2",
"description": "FPDF 2 is a PHP class which allows to generate PDF files with pure PHP. F from FPDF stands for Free: you may use it for any kind of usage and modify it to suit your needs.",
"type": "library",
"keywords": [
"pdf",
"fpdf"
],
"license": "MIT",
"authors": [
{
"name": "Laurent Muller",
"email": "[email protected]",
"homepage": "https://www.bibi.nu",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/laurentmuller/fpdf2/issues",
"source": "https://github.com/laurentmuller/fpdf2"
},
"autoload": {
"psr-4": {
"fpdf\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"fpdf\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.2",
"ext-gd": "*",
"ext-iconv": "*",
"ext-intl": "*",
"ext-zlib": "*",
"elao/enum": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"bamarni/composer-bin-plugin": "^1.0"
},
"extra": {
"bamarni-bin": {
"bin-links": false,
"forward-command": true,
"target-directory": "vendor-bin"
}
},
"config": {
"platform": {
"php": "8.2.19"
},
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"platform-check": true,
"discard-changes": true,
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
},
"scripts": {
"app-fixer": "vendor-bin/php-cs-fixer/vendor/bin/php-cs-fixer fix --diff --dry-run",
"app-fixer-fix": "vendor-bin/php-cs-fixer/vendor/bin/php-cs-fixer fix --diff",
"app-rector": "vendor-bin/rector/vendor/bin/rector process --dry-run --config rector.php",
"app-rector-fix": "vendor-bin/rector/vendor/bin/rector process --config rector.php",
"app-psalm": "vendor-bin/psalm/vendor/bin/psalm --config psalm.xml",
"app-stan": "vendor-bin/phpstan/vendor/bin/phpstan analyse --configuration phpstan.neon --memory-limit 2G",
"app-test": "vendor/bin/phpunit",
"app-markdown": "markdownlint-cli2",
"app-all": [
"@app-fixer",
"@app-rector",
"@app-psalm",
"@app-stan",
"@app-test",
"@app-markdown"
]
}
}