feat(BaseConverter): create module

This commit is contained in:
Matthieu Bessat 2021-10-03 10:39:21 +02:00
parent df790e0c9a
commit 53b5ebcb43
3 changed files with 119 additions and 1 deletions

View file

@ -0,0 +1,20 @@
<?php
return [
'title' => 'Base Converter',
'description' => 'Convert from base to base easily',
'actions' => [
[
'name' => 'Convert from base64 to string',
'path' => '/?from=base64&data=dGhhdCdzIGNvb2wgaHVoPwo='
],
[
'name' => 'Convert decimal to hex',
'path' => '/?from=hex&data=2a'
],
[
'name' => 'Convert string to decimal',
'path' => '/?to=dec&data=hello'
]
]
];