diff --git a/composer.json b/composer.json index 0925a50..9faea29 100644 --- a/composer.json +++ b/composer.json @@ -18,12 +18,11 @@ "require": { "php": "^8.1", "spatie/laravel-package-tools": "^1.13.0", - "illuminate/contracts": "^8|^9|^10|^11", - "illuminate/support": "^8|^9|^10|^11", - "illuminate/database": "^8|^9|^10|^11" + "illuminate/contracts": "^9|^10|^11", + "illuminate/support": "^9|^10|^11", + "illuminate/database": "^9.4|^10|^11" }, "require-dev": { - "laravel/pint": "^1.0", "nunomaduro/collision": "^6.0", "orchestra/testbench": "^7.0", "pestphp/pest": "^1.21", diff --git a/src/DB2Processor.php b/src/DB2Processor.php index 0a33085..d93325d 100644 --- a/src/DB2Processor.php +++ b/src/DB2Processor.php @@ -36,4 +36,16 @@ public function processInsertGetId(Builder $query, $sql, $values, $sequence = nu return is_numeric($id) ? (int) $id : $id; } } -} + + /** + * Process the results of a column listing query. + * This was present in Illuminate\Database\Query\Processor.php 9.x but later removed. + * + * @param array $results + * @return array + */ + public function processColumnListing($results) + { + return $results; + } +} \ No newline at end of file