-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
64 lines (64 loc) · 1.89 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
{
"name": "craftpulse/craft-password-policy",
"description": "Enforce a password policy on your users.",
"type": "craft-plugin",
"version": "4.1.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"strong passwords",
"passwords",
"security"
],
"support": {
"email": "[email protected]",
"docs": "https://github.com/percipioglobal/craft-password-policy/blob/v4/README.md",
"issues": "https://github.com/percipioglobal/craft-password-policy/issues"
},
"license": "MIT",
"authors": [
{
"name": "Percipio Global Ltd.",
"homepage": "https://percipio.london"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.0.2",
"craftcms/cms": "^4.0.0-beta.1"
},
"require-dev": {
"craftcms/phpstan": "dev-main"
},
"autoload": {
"psr-4": {
"percipiolondon\\passwordpolicy\\": "src/"
}
},
"extra": {
"name": "Password Policy",
"handle": "password-policy",
"hasCpSettings": true,
"hasCpSection": false,
"developer": "percipiolondon",
"developerUrl": "https://percipio.london",
"documentationUrl": "https://github.com/percipioglobal/craft-password-policy/blob/v4/README.md",
"changelogUrl": "https://raw.githubusercontent.com/percipioglobal/craft-password-policy/v4/CHANGELOG.md",
"components": {
"passwordService": "percipiolondon\\passwordpolicy\\services\\PasswordService"
},
"class": "percipiolondon\\passwordpolicy\\PasswordPolicy"
},
"scripts": {
"phpstan": "phpstan --memory-limit=1G"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}