summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2021-04-21 16:21:34 +0200
committerRemi Collet <remi@remirepo.net>2021-04-21 16:21:34 +0200
commit0b87d8f09f10562c57b0cdcccf91ffc6df63cecd (patch)
tree0c3a07afb14eeb5d97480e86ae9fcd400a68a3b7 /composer.json
initial package, version 1.2.0
rename from php-mkopinsky-zxcvbn-php to php-bjeavons-zxcvbn-php raise dependency on PHP 7.2 switch to phpunit8
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json29
1 files changed, 29 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..ec189c1
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,29 @@
+{
+ "name": "bjeavons/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",
+ "license": "MIT",
+ "authors": [
+ {
+ "name": "See contributors",
+ "homepage": "https://github.com/bjeavons/zxcvbn-php"
+ }
+ ],
+ "require": {
+ "php": "^7.2 | ^8.0",
+ "symfony/polyfill-mbstring": ">=1.3.1"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^8.5",
+ "php-coveralls/php-coveralls": "*",
+ "squizlabs/php_codesniffer": "3.*"
+ },
+ "autoload": {
+ "psr-4": { "ZxcvbnPhp\\": "src/" }
+ },
+ "autoload-dev": {
+ "psr-4": { "ZxcvbnPhp\\Test\\": "test/" }
+ }
+}