-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
32 lines (32 loc) · 902 Bytes
/
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
{
"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-dev",
"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 || ^8.0.0",
"composer/installers": "~1.0"
},
"extra": {
"display-name": "Password Strength",
"soft-require": {
"phpbb/phpbb": ">=3.3.10,<4.0.0@dev"
},
"version-check": {
"host": "www.phpbb.com",
"directory": "/customise/db/extension/password_strength",
"filename": "version_check",
"ssl": true
}
}
}