-
Notifications
You must be signed in to change notification settings - Fork 28
/
composer.json
36 lines (36 loc) · 1.03 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
{
"name": "rych/phpass",
"type": "library",
"description": "PHP Password Library: Easy, secure password management for PHP",
"keywords": ["cryptography", "password"],
"homepage": "https://github.com/rchouinard/phpass",
"license": "MIT",
"authors": [
{
"name": "Ryan Chouinard",
"email": "[email protected]",
"homepage": "http://ryanchouinard.com"
}
],
"support": {
"issues": "https://github.com/rchouinard/phpass/issues",
"wiki": "https://github.com/rchouinard/phpass/wiki"
},
"require": {
"php": ">=5.3.7"
},
"suggest": {
"ext-hash": "Some modules and features may require the HASH Message Digest Framework extension in order to work.",
"ext-openssl": "The OpenSSL extension is used as a secure source of random data."
},
"autoload": {
"psr-0" : {
"Phpass" : "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.1-dev"
}
}
}