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

fix for php 8.3 #510

Closed
wants to merge 22 commits into from
Closed
Show file tree
Hide file tree
Changes from 4 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
2 changes: 0 additions & 2 deletions application/core/MY_Model.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ class MY_Model extends CI_Model {
*/
public function __construct()
{
parent::__construct();
tenzap marked this conversation as resolved.
Show resolved Hide resolved

set_error_handler(function($errno, $errstr, $errfile, $errline) {
throw new ErrorException($errstr, $errno, 0, $errfile, $errline);
});
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
"type": "project",
"license": "GPL-2.0-or-later",
"require": {
"php": ">=5.6",
"php": ">=8.2",
tenzap marked this conversation as resolved.
Show resolved Hide resolved
"ext-ctype": "*",
"ext-curl": "*",
"ext-hash": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-session": "*",
"codeigniter/framework": ">=3.1.13 <3.2",
"codeigniter/framework": "dev-develop",
"paragonie/random_compat": ">=2",
"giggsey/libphonenumber-for-php": "^8.12",
"league/csv": "^8.2 || ^9.5",
Expand Down
Loading
Loading