-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathcomposer.json
More file actions
105 lines (105 loc) · 3.01 KB
/
composer.json
File metadata and controls
105 lines (105 loc) · 3.01 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "in2code/publications",
"description": "Publication reference extension with im- and export with bibtex and xml files",
"keywords": [
"typo3",
"bib",
"publication",
"bibliography",
"bibtex",
"bibtext"
],
"homepage": "https://github.com/in2code-de/publications",
"authors": [
{
"name": "Klaus Fumy",
"email": "klaus.fumy@uni-ulm.de",
"role": "Product owner",
"homepage": "https://www.uni-ulm.de"
},
{
"name": "Alex Kellner",
"email": "alexander.kellner@in2code.de",
"role": "Technical owner",
"homepage": "https://www.uni-ulm.de"
},
{
"name": "Sebastian Stein",
"email": "sebastian.stein@in2code.de",
"role": "Developer",
"homepage": "https://www.uni-ulm.de"
}
],
"type": "typo3-cms-extension",
"license": "GPL-2.0-or-later",
"require": {
"php": "^8.2",
"ext-simplexml": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-pdo": "*",
"renanbr/bibtex-parser": "^2",
"typo3/cms-core": "^13.4"
},
"replace": {
"typo3-ter/publications": "self.version"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.8",
"helhum/typo3-console": "^8.0",
"helmich/typo3-typoscript-lint": "^3",
"squizlabs/php_codesniffer": "^3.3",
"typo3/cms-belog": "^13.4",
"typo3/cms-extbase": "^13.4",
"typo3/cms-extensionmanager": "^13.4",
"typo3/cms-felogin": "^13.4",
"typo3/cms-filelist": "^13.4",
"typo3/cms-fluid-styled-content": "^13.4",
"typo3/cms-frontend": "^13.4",
"typo3/cms-info": "^13.4",
"typo3/cms-install": "^13.4",
"typo3/cms-lowlevel": "^13.4",
"typo3/cms-rte-ckeditor": "^13.4",
"typo3/cms-scheduler": "^13.4",
"typo3/cms-setup": "^13.4",
"typo3/cms-styleguide": "^13.4",
"typo3/cms-t3editor": "^13.4",
"typo3/cms-tstemplate": "^13.4",
"undefined/translate-locallang": "^2.9"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"In2code\\Publications\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"In2code\\Publications\\Tests\\": "Tests",
"TYPO3\\CMS\\Core\\Tests\\": ".build/vendor/typo3/cms/typo3/sysext/core/Tests/",
"TYPO3\\CMS\\Fluid\\Tests\\": ".build/vendor/typo3/cms/typo3/sysext/fluid/Tests/"
}
},
"config": {
"vendor-dir": ".build/vendor",
"bin-dir": ".build/bin",
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
},
"sort-packages": true
},
"scripts": {
"test:php:cs": "php-cs-fixer fix --dry-run --config=.project/tests/.php-cs-fixer.php --diff",
"fix:php": "php-cs-fixer fix --config=.project/tests/.php-cs-fixer.php --diff",
"test:php:lint": "find *.php Classes Configuration -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l",
"test:typoscript:lint": "typoscript-lint --config=.project/tests/typoscript-lint.yml"
},
"extra": {
"typo3/cms": {
"web-dir": ".build/public",
"extension-key": "publications"
}
}
}