tao-test/app/generis/config/default/passwords.conf.php

27 lines
643 B
PHP

<?php
/**
* Default config header
*/
return [
'constrains' => //constrains configuration params
[
'length' => 4,
'upper' => false,
'lower' => true,
'number' => false,
'spec' => false
],
'generator' => [
'chars' => 'abcdefghijklmnopqrstuvwxyz',
'nums' => '0123456789',
'syms' => '!@#$%^&*()-+?',
//excludes this characters from random password to prevent confusion
'similar' => 'iIl1Oo0',
//used for human readable generator
'dictionary' => '/usr/share/dict/words'
]
];