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

V4.x #86

Merged
merged 3 commits into from
Mar 31, 2024
Merged

V4.x #86

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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ Database Wrapper - Base Model

- [x] PDO Support from package `nguyenanhung/pdo` version `^3.0`
- [x] MySQLi Support from package `nguyenanhung/mysqli` version `^3.0`
- [x] illuminate/events `^10.0 || ^9.0 || ^8.61 || ^7.30 || ^6.20` Support
- [x] illuminate/database `^10.0 || ^9.0 || ^8.61 || ^7.30 || ^6.20` Support
- [x] illuminate/events `^11.0 || ^10.0 || ^9.0 || ^8.61` Support
- [x] illuminate/database `^11.0 || ^10.0 || ^9.0 || ^8.61` Support

## Version

Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,16 @@
}
],
"require": {
"php": "^7.1 || ^8.0",
"php": "^8.0",
"ext-json": "*",
"ext-pdo": "*",
"ext-mysqli": "*",
"nguyenanhung/my-debug": "^3.0",
"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 || ^7.30 || ^6.20",
"illuminate/database": "^11.0 || ^10.0 || ^9.0 || ^8.61 || ^7.30 || ^6.20"
"illuminate/events": "^11.0 || ^10.0 || ^9.0 || ^8.61",
"illuminate/database": "^11.0 || ^10.0 || ^9.0 || ^8.61"
},
"require-dev": {
"kint-php/kint": ">=3.0"
Expand Down
2 changes: 1 addition & 1 deletion src/Environment.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
interface Environment
{
public const PROJECT_NAME = 'My Database Packages by HungNG';
public const VERSION = '3.1.6';
public const VERSION = '4.0.0';
public const LAST_MODIFIED = '2024-03-31';
public const AUTHOR_NAME = 'Hung Nguyen';
public const AUTHOR_EMAIL = '[email protected]';
Expand Down
Loading