forked from mittwald/typo3-web2pdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.45 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
{
"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": "^11.5",
"mpdf/mpdf": "^8.0",
"php": ">=7.4"
},
"require-dev": {
"typo3/testing-framework": "^6.9.0",
"friendsofphp/php-cs-fixer": "^3.0"
},
"autoload": {
"psr-4": {
"Mittwald\\Web2pdf\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Mittwald\\Web2pdf\\Tests\\": "Tests",
"TYPO3\\CMS\\Core\\Tests\\": "vendor/typo3/cms/typo3/sysext/core/Tests/",
"TYPO3\\CMS\\Fluid\\Tests\\": "vendor/typo3/cms/typo3/sysext/fluid/Tests/"
}
},
"replace": {
"typo3-ter/web2pdf": "self.version"
},
"scripts": {
"extension-package": ["bash -x Build/package-version.sh"],
"post-autoload-dump": [
"mkdir -p .Build/public/typo3conf/ext/",
"[ -L .Build/public/typo3conf/ext/web2pdf ] || ln -snvf ../../../../. .Build/public/typo3conf/ext/web2pdf"
]
},
"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",
"app-dir": ".Build",
"web-dir": ".Build/public"
}
}
}