forked from roots/wp-password-bcrypt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
61 lines (61 loc) · 1.47 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
{
"name": "geminilabs/wp-password-bcrypt",
"type": "wordpress-plugin",
"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": "Jan Pingel",
"email": "[email protected]",
"homepage": "http://janpingel.com"
}
],
"keywords": [
"wordpress wp bcrypt password"
],
"support": {
"issues": "https://github.com/roots/wp-password-bcrypt/issues",
"forum": "https://discourse.roots.io/"
},
"require": {
"php": ">=5.5.0",
"composer/installers": "~1.0"
},
"require-dev": {
"brain/monkey": "^1.3.1",
"mockery/mockery": "^0.9.4",
"squizlabs/php_codesniffer": "^2.5.1",
"phpunit/phpunit": "^4.8.23|^5.2.9"
},
"autoload": {
"files": ["wp-password-bcrypt.php"]
},
"archive" : {
"exclude": [
".editorconfig",
".gitattributes",
".gitignore",
".travis.yml",
"CONTRIBUTING.md",
"phpcs.xml",
"phpunit.xml",
"tests"
]
},
"scripts": {
"test": [
"vendor/bin/phpcs",
"vendor/bin/phpunit --colors=always"
]
}
}