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

Commit 30be803

Browse files
authored
Merge pull request #6 from mkopinsky/prep-for-release
Use my own package name in preparation for public release
2 parents 2ad3416 + 226fe12 commit 30be803

File tree

2 files changed

+13
-9
lines changed

2 files changed

+13
-9
lines changed

README.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ Zxcvbn-PHP is a password strength estimator using pattern matching and minimum e
22

33
>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.
44
5-
[![Build Status](https://travis-ci.org/bjeavons/zxcvbn-php.png?branch=master)](https://travis-ci.org/bjeavons/zxcvbn-php)
6-
[![Coverage Status](https://coveralls.io/repos/bjeavons/zxcvbn-php/badge.png?branch=master)](https://coveralls.io/r/bjeavons/zxcvbn-php?branch=master)
7-
[![Latest Stable Version](https://poser.pugx.org/bjeavons/zxcvbn-php/v/stable.png)](https://packagist.org/packages/bjeavons/zxcvbn-php)
5+
[![Build Status](https://travis-ci.org/mkopinsky/zxcvbn-php.png?branch=master)](https://travis-ci.org/mkopinsky/zxcvbn-php)
6+
[![Coverage Status](https://coveralls.io/repos/github/mkopinsky/zxcvbn-php/badge.svg?branch=master)](https://coveralls.io/github/mkopinsky/zxcvbn-php?branch=master)
7+
[![Latest Stable Version](https://poser.pugx.org/mkopinsky/zxcvbn-php/v/stable.png)](https://packagist.org/packages/mkopinsky/zxcvbn-php)
88

99
## Installation
1010

@@ -13,7 +13,7 @@ The library can be installed with [Composer](http://getcomposer.org) by adding i
1313
```json
1414
{
1515
"require": {
16-
"bjeavons/zxcvbn-php": "^0.4"
16+
"mkopinsky/zxcvbn-php": "^4.4.2"
1717
}
1818
}
1919
```
@@ -46,5 +46,9 @@ echo $strength['score'];
4646
```
4747

4848
### Acknowledgements
49-
Thanks to @lowe for the original [Javascript Zxcvbn](https://github.com/lowe/zxcvbn)
50-
and [@Dreyer's port](https://github.com/Dreyer/php-zxcvbn) for reference.
49+
Thanks to:
50+
* @lowe for the original [Javascript Zxcvbn](https://github.com/lowe/zxcvbn)
51+
* [@Dreyer's port](https://github.com/Dreyer/php-zxcvbn) for reference for initial implementation
52+
* [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
53+
54+

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
2-
"name": "bjeavons/zxcvbn-php",
2+
"name": "mkopinsky/zxcvbn-php",
33
"type": "library",
44
"description": "Realistic password strength estimation PHP library based on Zxcvbn JS",
55
"keywords": ["zxcvbn","password"],
6-
"homepage": "https://github.com/bjeavons/zxcvbn-php",
6+
"homepage": "https://github.com/mkopinsky/zxcvbn-php",
77
"license": "MIT",
88
"authors": [
99
{
1010
"name": "See contributors",
11-
"homepage": "https://github.com/bjeavons/zxcvbn-php"
11+
"homepage": "https://github.com/mkopinsky/zxcvbn-php"
1212
}
1313
],
1414
"require": {

0 commit comments

Comments
 (0)