From d89a6f9ff676fc588e3a3bd9e78354e4c2042af1 Mon Sep 17 00:00:00 2001 From: Serhii Date: Thu, 13 Jun 2024 18:00:00 +0300 Subject: [PATCH 1/2] Start update to version 8.3 --- DatabaseChangeLog.php | 2 +- composer.json | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/DatabaseChangeLog.php b/DatabaseChangeLog.php index a7cca08..0c5376b 100644 --- a/DatabaseChangeLog.php +++ b/DatabaseChangeLog.php @@ -52,7 +52,7 @@ class DatabaseChangeLog private function __construct() { /* ... @return Singleton */ } private function __clone() { /* ... @return Singleton */ } - private function __wakeup() { /* ... @return Singleton */ } + public function __wakeup() { /* ... @return Singleton */ } static public function getInstance() { diff --git a/composer.json b/composer.json index 59c5ead..55f6460 100644 --- a/composer.json +++ b/composer.json @@ -19,8 +19,8 @@ } ], "require": { - "php": ">=5.3", - "greenlion/php-sql-parser": "4.3.0" + "php": ">=8.3", + "greenlion/php-sql-parser": "4.6.0" }, "autoload": { "psr-4" : { @@ -29,7 +29,7 @@ }, "extra": { "branch-alias": { - "dev-master": "1.0.x-dev" + "dev-master": "2.0.x-dev" } } } \ No newline at end of file From 03b1b2323c9568b10d96963a499b5f0429dda242 Mon Sep 17 00:00:00 2001 From: Serhii Date: Fri, 14 Jun 2024 13:33:23 +0300 Subject: [PATCH 2/2] fix adding as dev dependency in README.md --- README.md | 4 ++-- composer.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1412214..f38013d 100644 --- a/README.md +++ b/README.md @@ -23,8 +23,8 @@ or add to yours _composer.json_ see [the documentation](https://getcomposer.org/ { "repositories": [ { - "url": "https://github.com/moledet/database-change-log.git", - "type": "git" + "url": "https://github.com/moledet/database-change-log", + "type": "vcs" } ], "require": { diff --git a/composer.json b/composer.json index 55f6460..fa23022 100644 --- a/composer.json +++ b/composer.json @@ -15,7 +15,7 @@ "repositories": [ { "type": "vcs", - "url": "https://github.com/moledet/.git" + "url": "https://github.com/moledet/database-change-log" } ], "require": {