Keller Martin
Keller Martin
Bumping this issue as mentioned in #289 and #321. I noticed this is the only package in my laravel project still requiring `predis/predis`, as I use `phpredis` instead. Not sure...
I don't think simply updating the version is enough here without extra fixes. The package's functionality has changed namespace at the very least, to `Detection\MobileDetect`. Also looks like they've removed...
I am also interested in this PR after the [2.3.0](https://github.com/PHP-Open-Source-Saver/jwt-auth/releases/tag/2.3.0) release. All other dependencies in my app support `lcobucci/jwt:^5.0` except this one, so this change would allow me to update
PR created here #248
@fideloper are you still accepting new issues/PRs here? Or should everything go to the laravel/framework repo now? I'm having the same issue as OP, where my requests are travelling through...
Good point, changing behavior for `*` could break stuff. If `**` is deprecated though, we could reintroduce the functionality just for that, maybe? Something like: if `*` => trust the...
There's [another comment here](https://github.com/laravel/framework/pull/51859#issuecomment-2421375357) from October on my original PR that attempted to fix this. So seems like people are still finding this to be an issue, or at the...
@vladyslavkotyk If you must use `Bus::dispatch`, I'd think your best bet is to copy the `shouldDispatch()` logic out of `PendingDispatch`, then override the standard Dispatcher implementation including the `shouldDispatch()` logic...
@taylorotwell Coming back around to this one. Though it's an edge case, it does seem like it's possible to queue duplicated unique jobs using only the recommended, documented methods, for...
Having the same issue as #285, I'd like to bump this PR. We've patched it in our application with a very similar fix (simply removing the `static::syncingDisabledFor($model)` check and adding...