forked from DMKEBUSINESSGMBH/typo3-mksanitizedparameters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
71 lines (71 loc) · 2.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
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
{
"name": "dmk/mksanitizedparameters",
"description": "Sanitize $_REQUEST, $_POST and $_GET before the processing of TYPO3 in backend or frontend starts. Take a look into the documentation how to add your own rules or see which one exist.",
"version": "9.5.0",
"type": "typo3-cms-extension",
"keywords": [
"TYPO3 CMS",
"parameter",
"sanitize",
"security"
],
"homepage": "http://www.dmk-ebusiness.de/",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Hannes Bochmann",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"source": "https://github.com/DMKEBUSINESSGMBH/typo3-mksanitizedparameters",
"issues": "https://github.com/DMKEBUSINESSGMBH/typo3-mksanitizedparameters"
},
"replace": {
"mksanitizedparameters": "self.version",
"typo3-ter/mksanitizedparameters": "self.version"
},
"require": {
"typo3/cms-core": "~8.7 || ~9.5",
"digedag/rn-base": ">=1.10.0",
"dmk/mklib": "~9.5"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "~2@stable",
"nimut/testing-framework": "^4.0"
},
"autoload": {
"classmap": [
"hooks/",
"interface/",
"sanitizer/",
"util/"
],
"files": [
"class.tx_mksanitizedparameters.php",
"class.tx_mksanitizedparameters_Rules.php",
"class.tx_mksanitizedparameters_StealthMode.php"
]
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"preferred-install": {
"typo3/cms": "source"
}
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .Build/Web/typo3conf/ext/",
"[ -L .Build/Web/typo3conf/ext/mksanitizedparameters ] || ln -snvf ../../../../. .Build/Web/typo3conf/ext/mksanitizedparameters"
]
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
}
}