-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (44 loc) · 1.13 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": "webprofil/wp-falcleaner",
"type": "typo3-cms-extension",
"description": "Find duplicate files and clean up database and filesystem.",
"license": "GPL-2.0-or-later",
"support": {
"source": "https://github.com/Gernott/wp_falcleaner",
"issues": "https://github.com/Gernott/wp_falcleaner/issues/"
},
"authors": [
{
"name": "Gernot Ploiner",
"role": "Developer",
"homepage": "https://www.webprofil.at"
}
],
"funding": [
{
"type": "WEBprofil - Gernot Ploiner e.U.",
"url": "https://www.paypal.com/donate/?cmd=_s-xclick&hosted_button_id=QBA9FNKYU98BQ"
}
],
"require": {
"typo3/cms-core": "^10.4"
},
"autoload": {
"psr-4": {
"WEBprofil\\WpFalcleaner\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"WEBprofil\\WpFalcleaner\\Tests\\": "Tests"
}
},
"replace": {
"typo3-ter/wp-falcleaner": "self.version"
},
"extra": {
"typo3/cms": {
"extension-key": "wp_falcleaner"
}
}
}