summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2019-03-01 10:29:53 +0100
committerRemi Collet <remi@remirepo.net>2019-03-01 10:29:53 +0100
commit0de91f53ffb6e0b31ffdb633c68477e2da8d4980 (patch)
tree52d6da9c07c0b79b97fb39df8b9d74ad3c678a2d /composer.json
new package
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..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/" }
+ }
+}