-
-
Notifications
You must be signed in to change notification settings - Fork 66
/
composer.json
71 lines (71 loc) · 1.74 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
70
71
{
"name": "roots/wp-password-bcrypt",
"license": "MIT",
"description": "WordPress plugin which replaces wp_hash_password and wp_check_password's phpass hasher with PHP 5.5's password_hash and password_verify using bcrypt.",
"homepage": "https://roots.io/plugins/wp-password-bcrypt",
"authors": [
{
"name": "Scott Walkinshaw",
"email": "[email protected]",
"homepage": "https://github.com/swalkinshaw"
},
{
"name": "QWp6t",
"homepage": "https://github.com/qwp6t"
},
{
"name": "Brandon Nifong",
"homepage": "https://github.com/log1x"
},
{
"name": "Jan Pingel",
"email": "[email protected]",
"homepage": "http://janpingel.com"
}
],
"keywords": [
"wordpress",
"bcrypt",
"passwords"
],
"support": {
"issues": "https://github.com/roots/wp-password-bcrypt/issues",
"forum": "https://discourse.roots.io/"
},
"autoload": {
"files": ["wp-password-bcrypt.php"]
},
"autoload-dev": {
"psr-4": {
"Roots\\PasswordBcrypt\\Tests\\": "tests/"
}
},
"require": {
"php": ">=5.6.0"
},
"require-dev": {
"brain/monkey": "^2.6",
"mockery/mockery": "^1.4",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"phpunit/phpunit": "<= 9.3",
"squizlabs/php_codesniffer": "^3.5",
"phpcompatibility/php-compatibility": "^9.3"
},
"archive" : {
"exclude": [
".editorconfig",
".gitattributes",
".gitignore",
".github",
"CONTRIBUTING.md",
"phpcs.xml.dist",
"phpunit.xml.dist",
"tests"
]
},
"scripts": {
"test": "phpunit",
"lint": "phpcs",
"coverage": "XDEBUG_MODE=coverage phpunit --coverage-text --coverage-html=coverage"
}
}