-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathcomposer.json
46 lines (46 loc) · 1022 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
46
{
"name": "mittwald/web2pdf",
"description": "Web2PDF Extension",
"homepage": "https://www.mittwald.de",
"license": "GPL-2.0-or-later",
"minimum-stability": "dev",
"prefer-stable": true,
"type": "typo3-cms-extension",
"require": {
"typo3/cms-core": "^13.4",
"mpdf/mpdf": "^8.0",
"php": ">=8.2"
},
"require-dev": {
"typo3/testing-framework": "^9.0.0",
"friendsofphp/php-cs-fixer": "^3.0"
},
"autoload": {
"psr-4": {
"Mittwald\\Web2pdf\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Mittwald\\Web2pdf\\Tests\\": "Tests"
}
},
"replace": {
"typo3-ter/web2pdf": "self.version"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"extension-key": "web2pdf",
"web-dir": ".Build/public"
}
}
}