diff options
author | Anthony Ferrara <ircmaxell@gmail.com> | 2012-09-07 11:43:15 -0400 |
---|---|---|
committer | Anthony Ferrara <ircmaxell@gmail.com> | 2012-09-07 11:43:15 -0400 |
commit | 006caf12ceba4bcc9e9e634598c24beea93bad89 (patch) | |
tree | dd1c6c3d75155804d61692a891e379f4e2f9d25f | |
parent | f1aff4a0fcbf42a156a986a9a474cf01dd0be326 (diff) | |
download | password_compat-006caf12ceba4bcc9e9e634598c24beea93bad89.zip password_compat-006caf12ceba4bcc9e9e634598c24beea93bad89.tar.gz password_compat-006caf12ceba4bcc9e9e634598c24beea93bad89.tar.bz2 |
Add composer.json file, and update the readme slightly
-rw-r--r-- | README.md | 6 | ||||
-rw-r--r-- | composer.json | 21 |
2 files changed, 26 insertions, 1 deletions
@@ -1,4 +1,8 @@ password_compat =============== -Compatibility with the password_* functions being worked on for PHP 5.5
\ No newline at end of file +Compatibility with the password_* functions being worked on for PHP 5.5 + +See [the RFC](https://wiki.php.net/rfc/password_hash) for more information. + +Status: BETA-1 diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..9cd1394 --- /dev/null +++ b/composer.json @@ -0,0 +1,21 @@ +{ + "name": "ircmaxell/PasswordCompat", + "description": "A compatibility library for the proposed simplified password hashing algorithm: https://wiki.php.net/rfc/password_hash", + "version": "1.0.0-beta1", + "keywords": ["password", "hashing"], + "homepage": "https://github.com/ircmaxell/password_compat", + "license": "MIT", + "authors": [ + { + "name": "Anthony Ferrara", + "email": "ircmaxell@php.net", + "homepage": "http://blog.ircmaxell.com" + } + ], + "require": { + "php": ">= 5.3.2" + }, + "autoload": { + "files": ["lib/password.php"] + } +}
\ No newline at end of file |