forked from Delo-Design/jmpdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 900 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
{
"type": "joomla-library",
"description": "MPDF for Joomla",
"license": "GPL-2.0-only",
"homepage": "https://github.com/Delo-Design/jmpdf",
"authors": [
{
"name": "Dmitrii Cymbal",
"role": "Developer, maintainer",
"email": "[email protected]",
"homepage": "https://delo-design.ru"
}
],
"minimum-stability": "stable",
"require": {
"php": "^7.0 || ^8.0",
"ext-json": "*",
"mpdf/mpdf": "^8.1"
},
"replace": {
"psr/log": "*",
"psr/http-message": "*"
},
"config": {
"optimize-autoloader": true,
"platform": {
"php": "7.4"
},
"vendor-dir": "libraries/vendor",
"github-protocols": [
"https"
],
"prepend-autoloader": false
},
"scripts": {
"post-install-cmd": [
"@udate-manifest"
],
"post-update-cmd": [
"@udate-manifest"
],
"udate-manifest": "@php ./cli/update-manifest.php",
"clear-fonts": "@php ./cli/clear-fonts.php"
}
}