-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
63 lines (63 loc) · 1.61 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
57
58
59
60
61
62
63
{
"name": "extcode/cart-pdf",
"type": "typo3-cms-extension",
"description": "Shopping Cart(s) for TYPO3 - PDF Renderer for Invoices and Delivery Notes",
"homepage": "https://cart.extco.de",
"license": [
"GPL-2.0+"
],
"keywords": [
"TYPO3 CMS",
"Shopping Cart",
"PDF",
"cart"
],
"authors": [
{
"name": "Daniel Gohlke",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/extcode/cart_pdf/issues"
},
"autoload": {
"psr-4": {
"Extcode\\CartPdf\\": "Classes"
}
},
"config": {
"bin-dir": ".build/bin",
"discard-changes": true,
"optimize-autoloader": true,
"vendor-dir": ".build/vendor"
},
"extra": {
"typo3/cms": {
"extension-key": "cart_pdf",
"app-dir": ".build",
"web-dir": ".build/public"
}
},
"require": {
"php": ">=7.2.0 <7.5",
"typo3/cms-core": "^10.4",
"extcode/cart": "^7.0",
"extcode/tcpdf": "^3.0"
},
"require-dev": {
"typo3/testing-framework": "^5.0",
"friendsofphp/php-cs-fixer": "^2.14",
"helmich/typo3-typoscript-lint": "^2.0"
},
"replace": {
"extcode/cart-pdf": "self.version"
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .build/public/typo3conf/ext/",
"[ -L .build/public/typo3conf/ext/cart_pdf ] || ln -snvf ../../../../. .build/public/typo3conf/ext/cart_pdf"
]
}
}