From 0de91f53ffb6e0b31ffdb633c68477e2da8d4980 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 1 Mar 2019 10:29:53 +0100 Subject: new package --- composer.json | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 composer.json (limited to 'composer.json') diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..e13d998 --- /dev/null +++ b/composer.json @@ -0,0 +1,29 @@ +{ + "name": "mkopinsky/zxcvbn-php", + "type": "library", + "description": "Realistic password strength estimation PHP library based on Zxcvbn JS", + "keywords": ["zxcvbn","password"], + "homepage": "https://github.com/mkopinsky/zxcvbn-php", + "license": "MIT", + "authors": [ + { + "name": "See contributors", + "homepage": "https://github.com/mkopinsky/zxcvbn-php" + } + ], + "require": { + "php": "^5.6 || ^7.0", + "symfony/polyfill-mbstring": ">=1.3.1" + }, + "require-dev": { + "phpunit/phpunit": "< 6.0", + "php-coveralls/php-coveralls": "*", + "squizlabs/php_codesniffer": "3.*" + }, + "autoload": { + "psr-4": { "ZxcvbnPhp\\": "src/" } + }, + "autoload-dev": { + "psr-4": { "ZxcvbnPhp\\Test\\": "test/" } + } +} -- cgit