I know that Laravel Vapor is where the action is, but I have a customer requiring a rather simple, low volume (think perhaps 20 calls a day) Webhook triggered API that updates from one third-party system to another.
For reasons beyond the scope of this discussion, they are locked into the solution running as a google cloud function.
The path most traveled here would be to use an express node.js application which I'm sure will run just fine.
However, I did see that cloud functions can now natively run PHP 7.4 (not sure how long this has been available at the time of writing, August 2021)
Has anyone had any success with Laravel running as a Google Cloud Function (not deployed via Google Cloud App or Cloud Run - That does seem possible, but has all sorts of complexity such as docker make files and/or node.js / php cli runtimes)
I'd imagine a standard Laravel (or maybe Laravel Lumen) build would work fine as a Google Cloud Function, but just can't seem to find anyone who has done this (or tried and failed)