Skip to content
This repository has been archived by the owner on Feb 10, 2021. It is now read-only.

Commit

Permalink
Merge pull request #6 from mkopinsky/prep-for-release
Browse files Browse the repository at this point in the history
Use my own package name in preparation for public release
  • Loading branch information
mkopinsky authored Sep 14, 2018
2 parents 2ad3416 + 226fe12 commit 30be803
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
16 changes: 10 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ Zxcvbn-PHP is a password strength estimator using pattern matching and minimum e

>zxcvbn attempts to give sound password advice through pattern matching and conservative entropy calculations. It finds 10k common passwords, common American names and surnames, common English words, and common patterns like dates, repeats (aaa), sequences (abcd), and QWERTY patterns.
[![Build Status](https://travis-ci.org/bjeavons/zxcvbn-php.png?branch=master)](https://travis-ci.org/bjeavons/zxcvbn-php)
[![Coverage Status](https://coveralls.io/repos/bjeavons/zxcvbn-php/badge.png?branch=master)](https://coveralls.io/r/bjeavons/zxcvbn-php?branch=master)
[![Latest Stable Version](https://poser.pugx.org/bjeavons/zxcvbn-php/v/stable.png)](https://packagist.org/packages/bjeavons/zxcvbn-php)
[![Build Status](https://travis-ci.org/mkopinsky/zxcvbn-php.png?branch=master)](https://travis-ci.org/mkopinsky/zxcvbn-php)
[![Coverage Status](https://coveralls.io/repos/github/mkopinsky/zxcvbn-php/badge.svg?branch=master)](https://coveralls.io/github/mkopinsky/zxcvbn-php?branch=master)
[![Latest Stable Version](https://poser.pugx.org/mkopinsky/zxcvbn-php/v/stable.png)](https://packagist.org/packages/mkopinsky/zxcvbn-php)

## Installation

Expand All @@ -13,7 +13,7 @@ The library can be installed with [Composer](http://getcomposer.org) by adding i
```json
{
"require": {
"bjeavons/zxcvbn-php": "^0.4"
"mkopinsky/zxcvbn-php": "^4.4.2"
}
}
```
Expand Down Expand Up @@ -46,5 +46,9 @@ echo $strength['score'];
```

### Acknowledgements
Thanks to @lowe for the original [Javascript Zxcvbn](https://github.com/lowe/zxcvbn)
and [@Dreyer's port](https://github.com/Dreyer/php-zxcvbn) for reference.
Thanks to:
* @lowe for the original [Javascript Zxcvbn](https://github.com/lowe/zxcvbn)
* [@Dreyer's port](https://github.com/Dreyer/php-zxcvbn) for reference for initial implementation
* [bjeavon's implementation](https://github.com/bjeavons/zxcvbn-php) for building out zxcvbn-php as a solid initial port of the Dropbox library with composer support and unit tests


6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "bjeavons/zxcvbn-php",
"name": "mkopinsky/zxcvbn-php",
"type": "library",
"description": "Realistic password strength estimation PHP library based on Zxcvbn JS",
"keywords": ["zxcvbn","password"],
"homepage": "https://github.com/bjeavons/zxcvbn-php",
"homepage": "https://github.com/mkopinsky/zxcvbn-php",
"license": "MIT",
"authors": [
{
"name": "See contributors",
"homepage": "https://github.com/bjeavons/zxcvbn-php"
"homepage": "https://github.com/mkopinsky/zxcvbn-php"
}
],
"require": {
Expand Down

0 comments on commit 30be803

Please sign in to comment.