-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.41 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.41 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
{
"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": "ext@extco.de",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/extcode/cart_pdf/issues"
},
"autoload": {
"psr-4": {
"Extcode\\CartPdf\\": "Classes"
}
},
"config": {
"bin-dir": ".build/bin",
"vendor-dir": ".build/vendor",
"allow-plugins": {
"typo3/cms-composer-installers": false,
"typo3/class-alias-loader": false
}
},
"extra": {
"typo3/cms": {
"extension-key": "cart_pdf",
"web-dir": ".build/public"
}
},
"require": {
"php": "~8.2.0 || ~8.3.0 | ~8.4.0",
"ext-fileinfo": "*",
"typo3/cms-core": "^13.4",
"extcode/cart": "^11.5",
"tecnickcom/tcpdf": "^6.7"
},
"require-dev": {
"typo3/testing-framework": "^9.3",
"friendsofphp/php-cs-fixer": "^3.59",
"helmich/typo3-typoscript-lint": "^3.2",
"phpstan/phpstan": "^1.10"
}
}