2021-08-08 17:23:49 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return [
|
|
|
|
'actions' => [
|
|
|
|
[
|
|
|
|
'name' => 'Generate alphanumerics',
|
|
|
|
'path' => '/?contains=digit,lower,upper'
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'name' => 'More complex',
|
|
|
|
'path' => '/?contains=digit,lower,upper,special'
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'name' => 'Change length',
|
|
|
|
'path' => '/?length=20'
|
2021-08-21 19:48:33 +00:00
|
|
|
],
|
|
|
|
[
|
|
|
|
'name' => 'Only hex',
|
|
|
|
'path' => '/?length=16&contains=hex'
|
2021-08-08 17:23:49 +00:00
|
|
|
]
|
|
|
|
],
|
|
|
|
'append' => function () {
|
|
|
|
?>
|
|
|
|
Of course, you can combine many parameters into one query.
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
];
|