Alexander Tebiev
Alexander Tebiev
Could you please update your great tool to make it support the latest Laravel version?
* Yet Another Cron version: 0.16.0 * Operating System: Linux 8b410fb6a95c 5.10.16.3 # 1 SMP Fri Apr 2 22:23:49 UTC 2021 x86_64 Linux Hello, forts of all, thanks for a...
2.4.4-RELEASE-p1 squid-dev (4.5 branch) Real Time monitor does not show anything. I have enabled Access Logging, but it did not help.
The documentation has incorrect implementation of exception handler. [Here](https://github.com/MarcinOrlowski/laravel-api-response-builder/blob/master/docs/exceptions.md?plain=1#L52) there is no `handle` method in `ExceptionHandlerHelper`
[SETEX](https://redis.io/commands/setex/) is deprecated Could you please update the code to support [SET](https://redis.io/commands/set/) ? ```php public function storeData($key, $data, $expiration) { $store = serialize(array('data' => $data, 'expiration' => $expiration)); if (is_null($expiration))...
The library has this code to slightly change the expiration time. ```php $expirationDiff = rand(0, floor($cacheTime * .15)); $expiration -= $expirationDiff; ``` I know the reason, it's also discussed [here](https://github.com/tedious/Stash/issues/305)....
According to the interface https://github.com/Shardj/zf1-future/blob/master/library/Zend/Db/Statement/Interface.php#L134 Method `fetchAll` should always return `array` But in the abstraction class https://github.com/Shardj/zf1-future/blob/master/library/Zend/Db/Adapter/Abstract.php#L731 there is a union with null, which is incorrect ```php /** * Fetches...
Hello, I am getting this error when I try to update description on `quay.io` ``` level=debug msg="repo provider: quay" level=debug msg="Quay.GetAuthident called" level=debug msg="Using Docker creds: ********" level=debug msg="Quay.Pushrm called"...
Could you please make a bugfix update of the version 0.19.2 In order to fix this warning in PHP 8.1 ``` Return type of League\Fractal\Scope::jsonSerialize() should either be compatible with...
Firstly, thanks for the great package, I really like using it. One question, is it possible for you to implement `toArray()` to get an array representation of the json ?