forked from web-vision/wv_file_cleanup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.16 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
{
"name": "web-vision/wv_file_cleanup",
"type": "typo3-cms-extension",
"description": "Enables cleanup of unused fal records.",
"homepage": "https://web-vision.de",
"license": ["GPL-3.0+"],
"require": {
"php": ">=7.4 || >= 8.0",
"typo3/cms-core": "^10.4 || ^11.5"
},
"require-dev": {
"typo3/testing-framework": "^6.16",
"saschaegerer/phpstan-typo3": "^1.8",
"phpstan/phpstan": "^1.10",
"friendsofphp/php-cs-fixer": "^v3.0"
},
"autoload": {
"psr-4": {
"WebVision\\WvFileCleanup\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"WebVision\\WvFileCleanup\\Tests\\": "Tests"
}
},
"replace": {
"web-vision/wv_file_cleanup": "self.version"
},
"extra": {
"typo3/cms": {
"extension-key": "wv_file_cleanup"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true,
"sbuerk/typo3-cmscomposerinstallers-testingframework-bridge": true
}
}
}