Download the PHP package naif/generate-password without Composer
On this page you can find all versions of the php package naif/generate-password. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Please rate this library. Is it a good library?
Informations about the package generate-password
Nova Random Password Generation Field
A Laravel Nova password field with generating random password option
Installation:
You can install the package in to a Laravel app that uses Nova via composer:
Usage:
Add the below to Nova/User.php resource:
use Naif\GeneratePassword\GeneratePassword;
and add in the fields
GeneratePassword::make('Password')
->onlyOnForms()
->creationRules('required', 'string', 'min:6')
->updateRules('nullable', 'string', 'min:6')
->length(12) //You can specifiy the password length here
->excludeRules(['Symbols']) //exclude characters types from password
//(Symbols, Numbers. Uppercase, Lowercase), do not call method to include all types
<img src="https://raw.githubusercontent.com/naifalshaye/nova-random-password-generation/master/screenshots/screen.gif" width="700">
## Support:
[email protected]
https://www.linkedin.com/in/naif
## License:
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.
All versions of generate-password with dependencies
PHP Build Version
Package Version
Requires
php Version
>=7.1.0
The package naif/generate-password contains the following files
Loading the files please wait ....