Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove Mysqli #94

Merged
merged 1 commit into from
Jan 19, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
{
}
Loading