-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
58 lines (58 loc) · 1.26 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
{
"name": "jambagecom/div2007",
"type": "typo3-cms-extension",
"description": "Extension library since 2007. Many API functions for Front End extensions. Can replace TYPO3\\CMS\\Frontend\\Plugin\\AbstractPlugin methods.",
"keywords": [
"TYPO3",
"extension",
"library",
"tslib_pibase",
"AbstractPlugin",
"static_info_tables"
],
"support": {
"issues": "https://github.com/franzholz/div2007/issues"
},
"homepage": "https://jambage.com",
"authors": [
{
"name": "Franz Holzinger",
"role": "Developer",
"homepage": "https://ttproducts.de"
}
],
"license": [
"GPL-2.0-or-later"
],
"require": {
"php": "^8.0",
"typo3/cms-core": "^12.4 || ^13.2",
"typo3/cms-reports": "^12.4 || ^13.2"
},
"suggest": {
"friendsoftypo3/typo3db-legacy": "^1"
},
"autoload": {
"psr-4": {
"JambageCom\\Div2007\\": "Classes"
}
},
"replace": {
"typo3-ter/div2007": "self.version"
},
"extra": {
"typo3/cms": {
"extension-key": "div2007"
}
},
"config": {
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.42",
"ssch/typo3-rector": "^1.5"
}
}