-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
68 lines (68 loc) · 2.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "brotkrueml/typo3-form-rate-limit",
"description": "TYPO3 form finisher for rate limiting when sending a form",
"license": "GPL-2.0-or-later",
"type": "typo3-cms-extension",
"authors": [
{
"name": "Chris Müller",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/brotkrueml/typo3-form-rate-limit/issues",
"source": "https://github.com/brotkrueml/typo3-form-rate-limit",
"docs": "https://docs.typo3.org/p/brotkrueml/typo3-form-rate-limit/main/en-us/"
},
"require": {
"php": ">=7.4",
"ext-json": "*",
"symfony/rate-limiter": "^5.4 || ^6.4 || ^7.0",
"typo3/cms-core": "^11.5.3 || ^12.4 || ^13.4",
"typo3/cms-fluid": "^11.5.3 || ^12.4 || ^13.4",
"typo3/cms-form": "^11.5.3 || ^12.4 || ^13.4"
},
"require-dev": {
"brotkrueml/coding-standards": "~3.0.0",
"ergebnis/composer-normalize": "~2.44.0",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "1.12.10",
"phpunit/phpunit": "^9.6",
"rector/rector": "1.2.10",
"symfony/yaml": "^5.4 || ^6.4 || ^7.1",
"symplify/phpstan-rules": "^13.0",
"tomasvotruba/cognitive-complexity": "^0.2.3",
"typo3/cms-install": "^11.5.3 || ^12.4 || ^13.4"
},
"autoload": {
"psr-4": {
"Brotkrueml\\FormRateLimit\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Brotkrueml\\FormRateLimit\\Tests\\": "Tests"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"bin-dir": ".Build/bin",
"sort-packages": true,
"vendor-dir": ".Build/vendor"
},
"extra": {
"branch-alias": {
"dev-main": "1.7.x-dev"
},
"typo3/cms": {
"app-dir": ".Build",
"extension-key": "form_rate_limit",
"web-dir": ".Build/web"
}
}
}