Skip to content

Commit

Permalink
Remove Mysqli
Browse files Browse the repository at this point in the history
  • Loading branch information
nguyenanhung committed Jan 19, 2025
1 parent 10a7ccd commit 90035d1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
"ext-mysqli": "*",
"nguyenanhung/my-debug": "^4.0 || ^3.0",
"nguyenanhung/pdo": "^3.0",
"nguyenanhung/mysqli": "^3.0",
"nguyenanhung/database-helper": "^2.0",
"illuminate/events": "^11.0 || ^10.0 || ^9.0 || ^8.61",
"illuminate/database": "^11.0 || ^10.0 || ^9.0 || ^8.61"
Expand Down
4 changes: 2 additions & 2 deletions src/Environment.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
interface Environment
{
public const PROJECT_NAME = 'My Database Packages by HungNG';
public const VERSION = '4.0.7';
public const LAST_MODIFIED = '2024-09-22';
public const VERSION = '4.1.0';
public const LAST_MODIFIED = '2025-01-20';
public const AUTHOR_NAME = 'Hung Nguyen';
public const AUTHOR_EMAIL = '[email protected]';
public const AUTHOR_URL = 'https://nguyenanhung.com';
Expand Down
4 changes: 2 additions & 2 deletions src/Model/MySQLiBaseModel.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

namespace nguyenanhung\MyDatabase\Model;

use nguyenanhung\MySQLi\MySQLiBaseModel as BaseMySQLiBaseModel;
use nguyenanhung\PDO\MySQLPDOBaseModel as BaseMySQLPDOBaseModel;

/**
* Class MySQLiBaseModel
Expand All @@ -21,6 +21,6 @@
* @last_updated 2021-09-24
* @version 3.0.5
*/
class MySQLiBaseModel extends BaseMySQLiBaseModel
class MySQLiBaseModel extends BaseMySQLPDOBaseModel
{
}

0 comments on commit 90035d1

Please sign in to comment.