24 lines
430 B
PHP
24 lines
430 B
PHP
|
<?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'
|
||
|
]
|
||
|
],
|
||
|
'append' => function () {
|
||
|
?>
|
||
|
Of course, you can combine many parameters into one query.
|
||
|
<?php
|
||
|
}
|
||
|
];
|