-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 2.27 KB
/
composer.json
File metadata and controls
64 lines (64 loc) · 2.27 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
{
"name": "tamedevelopers/support",
"type": "composer-plugin",
"description": "Support Package For PHP and PHP Frameworks",
"homepage": "https://github.com/tamedevelopers/support",
"license": "MIT",
"authors": [
{
"name": "Tame Developers",
"email": "tamedevelopers@gmail.com"
}
],
"require": {
"php": ">=8.1",
"ext-ctype": "*",
"ext-mbstring": "*",
"symfony/var-dumper": "^6.0 || ^7.0",
"symfony/console": "^6.0 || ^7.0",
"symfony/http-foundation": "^6.0 || ^7.0",
"cocur/slugify": "^4.2.0",
"vlucas/phpdotenv": "^5.4.1",
"phpmailer/phpmailer": "^6.9",
"filp/whoops": "^2.15",
"ezyang/htmlpurifier": "^4.13",
"composer-plugin-api": "^2.0"
},
"extra": {
"class": "Tamedevelopers\\Support\\ComposerPlugin"
},
"scripts": {
"post-install-cmd": [
"Tamedevelopers\\Support\\Installer::install"
],
"post-update-cmd": [
"Tamedevelopers\\Support\\Installer::update"
]
},
"require-dev": {
"ext-sockets": "*",
"chrome-php/chrome": "^1.11",
"chrome-php/wrench": "^1.7",
"setasign/fpdi": "^2.6",
"tecnickcom/tcpdf": "^6.8"
},
"suggest": {
"aws/aws-sdk-php": "Required to use the `AWS` class and helper (^3.371)",
"dompdf/dompdf": "Required to use the `PDF` class and helper (^3.0)",
"chrome-php/chrome": "Required for ChromePdf and WebScraper `engine` => `chromium` (^1.11)",
"chrome-php/wrench": "Required for WebSocket communication with Chrome (^1.7)",
"ext-sockets": "PHP extension required by chrome-php for headless Chromium IPC",
"setasign/fpdi": "ChromePdf merge/watermark/encryption/PDF/A via FPDI (^2.6). Docs: https://manuals.setasign.com/fpdi-manual/",
"tecnickcom/tcpdf": "Required with fpdi for \\setasign\\Fpdi\\Tcpdf\\Fpdi (merge, encryption, PDF/A). FPDI docs: https://github.com/Setasign/FPDI — install both;"
},
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"Tamedevelopers\\Support\\": "src/"
},
"classmap": ["src/*"]
},
"minimum-stability": "stable"
}