-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Adds Laravel 10 Support * Update tests.yaml * Replace `moln/php-mysql-replication` --------- Co-authored-by: Deeka Wong <[email protected]>
- Loading branch information
1 parent
7543b71
commit 367be85
Showing
5 changed files
with
30 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/.vscode export-ignore | ||
/.github export-ignore | ||
/.gitattributes export-ignore | ||
/.gitignore export-ignore | ||
/.php-cs-fixer.php export-ignore | ||
/phpstan.neon |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"words": [] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,13 +14,13 @@ | |
"email": "[email protected]" | ||
}], | ||
"require": { | ||
"illuminate/support": "^9.0", | ||
"illuminate/console": "^9.0", | ||
"krowinski/php-mysql-replication": "^7.0" | ||
"illuminate/support": "^9.0|^10.0", | ||
"illuminate/console": "^9.0|^10.0", | ||
"moln/php-mysql-replication": "^1.2" | ||
}, | ||
"require-dev": { | ||
"friendsofphp/php-cs-fixer": "^3.0", | ||
"orchestra/testbench": "^7.0", | ||
"orchestra/testbench": "^7.0|^8.0", | ||
"phpstan/phpstan": "^1.0" | ||
}, | ||
"autoload": { | ||
|
@@ -40,7 +40,8 @@ | |
"config": { | ||
"allow-plugins": { | ||
"composer/package-versions-deprecated": true | ||
} | ||
}, | ||
"sort-packages": true | ||
}, | ||
"scripts": { | ||
"analyse": "phpstan analyse --memory-limit 300M -l 0 -c phpstan.neon ./src", | ||
|