-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
66 lines (66 loc) · 1.71 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
64
65
66
{
"name": "extcode/tcpdf",
"type": "typo3-cms-extension",
"description": "Wrapper Extension for tcpdf",
"license": [
"GPL-2.0+"
],
"keywords": [
"TYPO3 CMS",
"PDF"
],
"authors": [
{
"name": "Daniel Gohlke",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/extcode/tcpdf/issues"
},
"autoload": {
"psr-4": {
"Extcode\\TCPDF\\": "Classes"
},
"classmap": [
"Resources/Private/Library/tcpdf"
]
},
"config": {
"vendor-dir": ".build/vendor",
"bin-dir": ".build/bin"
},
"extra": {
"typo3/cms": {
"extension-key": "tcpdf",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"app-dir": ".build",
"web-dir": ".build/public"
}
},
"scripts": {
"extcode:cgl": [
".build/bin/php-cs-fixer fix --config=Build/.php_cs.dist -v --using-cache=no --path-mode=intersection ./"
],
"extcode:test:php:lint": [
".build/bin/phplint -c Build/phplint.yaml"
],
"extcode:test": [
"@extcode:test:php:lint"
],
"post-autoload-dump": [
"mkdir -p .build/Web/typo3conf/ext/",
"[ -L .build/Web/typo3conf/ext/tcpdf ] || ln -snvf ../../../../. .build/Web/typo3conf/ext/tcpdf"
]
},
"require": {
"php": ">=7.2.0 <7.5",
"typo3/cms-core": "^10.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.0",
"helmich/typo3-typoscript-lint": "^1.4",
"overtrue/phplint": "^1.1"
}
}