Skip to content

Commit 9326cc2

Browse files
Update README.md
1 parent 3930b1c commit 9326cc2

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

README.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,16 @@ Read [UPGRADING.MD](UPGRADING.md) on how to update versions.
203203

204204
This can happen when your application runs behind a reverse proxy. To fix this, add the application domain to Laravel's [trusted proxies](https://laravel.com/docs/11.x/requests#trusting-all-proxies). You may need to add the wildcard `*` as trusted proxy.
205205

206+
#### Maximum call stack size (zend.max_allowed_stack_size - zend.reserved_stack_size) reached. Infinite recursion?
207+
208+
This currently seems to be a bug with PHP 8.3 and `googleapis/gax-php`. See [this issue](https://github.com/googleapis/gax-php/issues/584) for more information.
209+
210+
A potential workaround is to disable PHP 8.3 call stack limit by setting this value in `php.ini`:
211+
212+
```ini
213+
zend.max_allowed_stack_size: -1
214+
```
215+
206216
### Contributing
207217

208218
You can use the services defined in `docker-compose.yml` to start running the package.
@@ -211,4 +221,4 @@ Inside the container, run `composer install`.
211221

212222
Set up the environment: `cp .env.example .env`
213223

214-
Some tests hit the Cloud Tasks API and need a project and key to be able to hit it. See the variables in `.env`
224+
Some tests hit the Cloud Tasks API and need a project and key to be able to hit it. See the variables in `.env`

0 commit comments

Comments
 (0)