-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
69 lines (69 loc) · 1.52 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
{
"name": "spooner-web/be_secure_pw",
"type": "typo3-cms-extension",
"description": "You can set password conventions to force secure passwords for BE users.",
"homepage": "https://git.spooner.io/spooner/be_secure_pw",
"license": [
"GPL-2.0-or-later"
],
"keywords": [
"TYPO3",
"extension",
"security",
"password",
"pattern",
"reminder"
],
"authors": [
{
"name": "Thomas Löffler",
"email": "[email protected]",
"homepage": "https://spooner-web.de",
"role": "Developer"
}
],
"support": {
"issues": "https://git.spooner.io/spooner/be_secure_pw/issues",
"source": "https://git.spooner.io/spooner/be_secure_pw"
},
"replace": {
"typo3-ter/be-secure-pw": "*"
},
"require": {
"php": ">= 7.4, < 8.3",
"typo3/cms-core": "^11.5",
"typo3/cms-setup": "^11.5",
"typo3/cms-beuser": "^11.5"
},
"require-dev": {
"phpstan/extension-installer": "^1.1",
"saschaegerer/phpstan-typo3": "^1.1",
"ssch/typo3-rector": "^1.0",
"typo3/coding-standards": "^0.5.0",
"typo3/testing-framework": "^6.0"
},
"autoload": {
"psr-4": {
"SpoonerWeb\\BeSecurePw\\": "Classes/"
}
},
"scripts": {
"test:unit": "XDEBUG_MODE=coverage phpunit",
"test:rector": "rector process -n",
"run:rector": "rector process"
},
"config": {
"vendor-dir": ".Build/vendor",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true,
"phpstan/extension-installer": true
}
},
"extra": {
"typo3/cms": {
"web-dir": ".Build/web",
"extension-key": "be_secure_pw"
}
}
}