-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 886 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 886 Bytes
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
{
"name": "vse/passwordstrength",
"type": "phpbb-extension",
"description": "An extension for phpBB that will show users the strength of a password as they type it into the password field when creating or updating their account.",
"homepage": "https://github.com/iMattPro/passwordstrength",
"version": "1.3.1",
"keywords": ["phpbb", "extension", "password", "strength", "zxcvbn"],
"license": "GPL-2.0-only",
"authors": [
{
"name": "Matt Friedman",
"homepage": "https://imattpro.github.io",
"role": "Developer"
}
],
"require": {
"php": ">=7.1.3",
"composer/installers": "^1.0 || ^2.0"
},
"extra": {
"display-name": "Password Strength",
"soft-require": {
"phpbb/phpbb": ">=3.3.10"
},
"version-check": {
"host": "www.phpbb.com",
"directory": "/customise/db/extension/password_strength",
"filename": "version_check",
"ssl": true
}
}
}