Skip to content

Commit

Permalink
Merge pull request #5 from serhii-s-prime/master
Browse files Browse the repository at this point in the history
Compatibility with php 8
  • Loading branch information
moledet authored Jun 14, 2024
2 parents c3e482b + 03b1b23 commit a4db2b7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion DatabaseChangeLog.php
Original file line number Diff line number Diff line change
Expand Up @@ -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()
{
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@
"repositories": [
{
"type": "vcs",
"url": "https://github.com/moledet/.git"
"url": "https://github.com/moledet/database-change-log"
}
],
"require": {
"php": ">=5.3",
"greenlion/php-sql-parser": "4.3.0"
"php": ">=8.3",
"greenlion/php-sql-parser": "4.6.0"
},
"autoload": {
"psr-4" : {
Expand All @@ -29,7 +29,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
"dev-master": "2.0.x-dev"
}
}
}

0 comments on commit a4db2b7

Please sign in to comment.