-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
60 lines (60 loc) · 1.42 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
{
"name": "jakota/typo3toolbox",
"type": "typo3-cms-extension",
"description": "Typo3 ToolBox of Utility functions and ViewHelpers.",
"authors": [
{
"name": "Thomas Lüder",
"role": "Product Manager"
},
{
"name": "Michael Krohn",
"role": "Developer"
}
],
"license": "GPL-2.0-or-later",
"require": {
"doctrine/sql-formatter": "^1.1",
"psr/http-factory": "^1.0",
"typo3/cms-core": "^10.4 || ^11.5 || ^12.4",
"typo3/cms-extbase": "^10.4 || ^11.5 || ^12.4",
"typo3/cms-fluid": "^10.4 || ^11.5 || ^12.4",
"typo3/cms-frontend": "^10.4 || ^11.5 || ^12.4",
"typo3/cms-backend": "^10.4 || ^11.5 || ^12.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.4",
"helmich/typo3-typoscript-lint": "^2.5",
"phpstan/phpstan": "^1.3",
"saschaegerer/phpstan-typo3": "^1.8.9"
},
"autoload": {
"psr-4": {
"JAKOTA\\Typo3ToolBox\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"JAKOTA\\Typo3ToolBox\\Tests\\": "Tests"
}
},
"replace": {
"typo3-ter/typo3toolbox": "self.version"
},
"config": {
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"scripts": {
"post-autoload-dump": [
"TYPO3\\TestingFramework\\Composer\\ExtensionTestEnvironment::prepare"
]
},
"extra": {
"typo3/cms": {
"extension-key": "typo3toolbox"
}
}
}