Rename PHPMyAdmin to phpMyAdmin

Signed-off-by: Liviu-Mihail Concioiu <liviu.concioiu@gmail.com>
This commit is contained in:
Liviu-Mihail Concioiu 2025-09-08 19:56:47 +02:00
parent d2fdad042c
commit 7b4712dca0
4 changed files with 4 additions and 4 deletions

View File

@ -194,7 +194,7 @@ Sample output:
[
{
"comment": "Export to JSON plugin for PHPMyAdmin",
"comment": "Export to JSON plugin for phpMyAdmin",
"type": "header",
"version": "4.7.0-dev"
},

View File

@ -113,7 +113,7 @@ class ExportJson extends ExportPlugin
$data = $this->encode([
'type' => 'header',
'version' => Version::VERSION,
'comment' => 'Export to JSON plugin for PHPMyAdmin',
'comment' => 'Export to JSON plugin for phpMyAdmin',
]);
if ($data === false) {
return false;

View File

@ -83,7 +83,7 @@ class ExportPhparray extends ExportPlugin
$this->export->outputHandler(
'<?php' . $GLOBALS['crlf']
. '/**' . $GLOBALS['crlf']
. ' * Export to PHP Array plugin for PHPMyAdmin' . $GLOBALS['crlf']
. ' * Export to PHP Array plugin for phpMyAdmin' . $GLOBALS['crlf']
. ' * @version ' . Version::VERSION . $GLOBALS['crlf']
. ' */' . $GLOBALS['crlf'] . $GLOBALS['crlf']
);

View File

@ -106,7 +106,7 @@ class ExportJsonTest extends AbstractTestCase
$this->expectOutputString(
"[\n"
. '{"type":"header","version":"' . Version::VERSION
. '","comment":"Export to JSON plugin for PHPMyAdmin"},'
. '","comment":"Export to JSON plugin for phpMyAdmin"},'
. "\n"
);