diff --git a/CHANGELOG.md b/CHANGELOG.md index aa7a676..8df425f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ Change Log ========== +### 07/14/2018 - 1.0.18 +* Fixed #17 for PHP 5.6 +* Replaced the spaceship operators with a php 5.6 alternative. +* Removed the php 7 type hinting. +* Added php >= 5.6 as the new requirement for install. + ### 07/06/2018 - 1.0.17 * Fixed #19 the `AND` query logic. (previously the `where()` query would only used the last one in the chain). diff --git a/README.md b/README.md index 2d105c1..4341725 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,8 @@ Doesn't that sound awesome? With Filebase, you are in complete control. Design your data structure the way you want. Use arrays and objects like you know how in PHP. Update and share your data with others and teams using version control. Just remember, upgrading your web/apache server is a lot less than your database server. +Works with **PHP 5.6** and **PHP 7+** + ### Features Filebase is simple by design, but has enough features for the more advanced. diff --git a/src/Database.php b/src/Database.php index 1f3a5c9..1b6ab5f 100644 --- a/src/Database.php +++ b/src/Database.php @@ -10,7 +10,7 @@ class Database * Stores the version of Filebase * use $db->getVersion() */ - const VERSION = '1.0.17'; + const VERSION = '1.0.18'; //--------------------------------------------------------------------