-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
74 lines (74 loc) · 1.83 KB
/
composer.json
File metadata and controls
74 lines (74 loc) · 1.83 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
{
"type": "joomla-library",
"description": "Integration of MPDF for Joomla",
"license": "GPL-2.0-only",
"homepage": "https://github.com/Delo-Design/jmpdf",
"authors": [
{
"name": "Dmitrii Cymbal",
"role": "Developer, maintainer",
"email": "cymbal@delo-design.ru",
"homepage": "https://delo-design.ru"
},
{
"name": "Artem Vasilev",
"role": "Developer",
"email": "dev@webmasterskaya.xyz",
"homepage": "https://webmasterskaya.xyz"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=8.1",
"ext-json": "*",
"ext-openssl": "*",
"mpdf/mpdf": "^8.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.4"
},
"replace": {
"psr/container": "1.1.2",
"psr/event-dispatcher": "1.0.0",
"psr/log": "3.0.1",
"psr/http-message": "1.1",
"symfony/console": "v6.4.11",
"symfony/deprecation-contracts": "v3.5.0",
"symfony/event-dispatcher": "v6.4.8",
"symfony/event-dispatcher-contracts": "v3.5.0",
"symfony/filesystem": "v6.4.9",
"symfony/finder": "v6.4.11",
"symfony/options-resolver": "v5.4.8",
"symfony/polyfill-ctype": "v1.30.0",
"symfony/polyfill-mbstring": "v1.30.0",
"symfony/service-contracts": "v3.5.0",
"symfony/stopwatch": "v6.4.8"
},
"config": {
"optimize-autoloader": true,
"platform": {
"php": "8.1"
},
"vendor-dir": "libraries/vendor",
"github-protocols": [
"https"
],
"prepend-autoloader": false
},
"scripts": {
"post-install-cmd": [
"@udate-manifest"
],
"post-update-cmd": [
"@udate-manifest"
],
"cs": [
"php-cs-fixer fix --ansi --dry-run --diff"
],
"cs-fix": [
"php-cs-fixer fix --ansi"
],
"udate-manifest": "@php ./cli/update-manifest.php",
"clear-fonts": "@php ./cli/clear-fonts.php"
}
}