Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
{
"name": "ahed92wakim/laravel-mysql-deadlock-retry",
"description": "Retrying database transaction when deadlocks occurred",
"description": "Gracefully retry Laravel transactions on MySQL deadlocks and serialization failures with configurable backoff, structured logging, and reusable helpers.",
"type": "library",
"minimum-stability": "stable",
"require": {
"php": ">=8.2",
"laravel/framework": ">=11.0"
"php": "^8.2",
"laravel/framework": "^11.0"
},
"license": "MIT",
"license": [
"MIT"
],
"autoload": {
"psr-4": {
"MysqlDeadlocks\\RetryHelper\\": "src/"
Expand Down
Loading