From e122f8e0c22165092b81578ecd618842e9e01d64 Mon Sep 17 00:00:00 2001 From: Alexander Butenko Date: Thu, 8 Feb 2018 00:07:59 -0500 Subject: [PATCH] 2.9.2 composer bugfix release (#718) --- MysqliDb.php | 2 +- composer.json | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/MysqliDb.php b/MysqliDb.php index 7e5826c3..6a55bddf 100644 --- a/MysqliDb.php +++ b/MysqliDb.php @@ -10,7 +10,7 @@ * @copyright Copyright (c) 2010-2017 * @license http://opensource.org/licenses/gpl-3.0.html GNU Public License * @link http://github.com/joshcam/PHP-MySQLi-Database-Class - * @version 2.9.1 + * @version 2.9.2 */ class MysqliDb diff --git a/composer.json b/composer.json index 3d2d13b8..1fa9b58d 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { - "name": "joshcam/mysqli-database-class", - "description": "PHP MySQL Wrapper and object mapper which utilizes MySQLi and prepared statements", - "license": "GPL-3.0", + "name": "joshcam/mysqli-database-class", + "description": "PHP MySQL Wrapper and object mapper which utilizes MySQLi and prepared statements", + "license": "GPL-3.0-or-later", "authors": [ { "name": "Josh Campbell", @@ -16,10 +16,10 @@ "role": "Developer" } ], - "require": { - "php": ">=5.3.0" - }, - "autoload": { - "files": ["MysqliDb.php", "dbObject.php"] - } + "require": { + "php": ">=5.3.0" + }, + "autoload": { + "files": ["MysqliDb.php", "dbObject.php"] + } }