From 78316e608d0a603cf497dff1f8445a6389ea4131 Mon Sep 17 00:00:00 2001 From: Victor Westerlund Date: Tue, 18 Apr 2023 21:37:57 +0200 Subject: [PATCH] fix: namespace --- composer.json | 4 ++-- src/{MariaDB.php => MySQL.php} | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) rename src/{MariaDB.php => MySQL.php} (97%) diff --git a/composer.json b/composer.json index 33d0d70..294f3de 100644 --- a/composer.json +++ b/composer.json @@ -1,5 +1,5 @@ { - "name": "victorwesterlund/db-driver-mysqli", + "name": "victorwesterlund/libmysqldriver", "description": "Abstraction library for common mysqli features", "type": "library", "license": "GPL-3.0-only", @@ -12,7 +12,7 @@ "minimum-stability": "dev", "autoload": { "psr-4": { - "DBDriver\\": "src/" + "libmysqldriver\\": "src/" } }, "require": {} diff --git a/src/MariaDB.php b/src/MySQL.php similarity index 97% rename from src/MariaDB.php rename to src/MySQL.php index a5c15a8..c5848ba 100644 --- a/src/MariaDB.php +++ b/src/MySQL.php @@ -1,8 +1,8 @@