You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+11-1
Original file line number
Diff line number
Diff line change
@@ -203,6 +203,16 @@ Read [UPGRADING.MD](UPGRADING.md) on how to update versions.
203
203
204
204
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.
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
+
206
216
### Contributing
207
217
208
218
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`.
211
221
212
222
Set up the environment: `cp .env.example .env`
213
223
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