Hermann D. Schimpf
Hermann D. Schimpf
file_get_contents() uses a lot of memory on large files, using fread() and fwrite() as chunks for temp file creation to avoid memory exhaustion.
## Extension reference - https://php.net/parallel ## Dependencies - AWS Lambda PHP layer compiled with ZTS flag enabled, please refer to https://github.com/brefphp/aws-lambda-layers/pull/63 Current `CI / Build and test layer` will fail...
Store the connection configuration into the instance to be able to access it from the eloquent model through `$this->getConnection()->getConfig('')`. In my case, as I use a Single-Table design, I want...
Allow to get a model's count. DynamoDB allows to specify which attributes will be returned in the query. But also has the special value [COUNT](https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_Query.html#DDB-Query-request-Select) to get only the count...
Support model scopes and call it from Model/Builder similar to Laravel's Eloquent models.
I made a library around `ext-parallel`. On PHP 8.0 everything works fine, but from PHP 8.1+ I got segmentation fault errors. Branch: https://github.com/hschimpf/parallel-sdk/tree/segfault Run `make` to execute the tests on...
### 1️⃣ Why should it be added? What are the benefits of this change? This PR fixes a critical bug in distributed environments where Laravel Excel exports are queued but...
### Versions: - laravel-modules Version: 12.0.4 - Laravel Version: 12.19.3 - PHP Version: 8.4.8 ### Description: Seems like [this commit](commit/bb99dde3d2bed212e4eafb4dae7567c4e7ff9b5f) caused it. Reverting that commit manually solves the issue. ```...