I'm receiving this error when trying to deploy locally using Google App Engines's sdk (PHP 7)
dev_appserver.py app.yaml
Returns
WARNING: The Cloud SDK no longer ships runtimes for PHP 5.4. Please set your runtime to be "php55".
This is my .yaml file
runtime: php
env: flex
runtime_config:
document_root: public
# Ensure we skip ".env", which is only for local development
skip_files:
- .env
env_variables:
# Put production environment variables here.
APP_LOG: errorlog
APP_KEY: :XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
STORAGE_DIR: /tmp
It works fine using PHP 5+
runtime: php55
api_version: 1
My sdk components are up to date.
I'm not finding anyone having this issue. Wondering if I should just re-install the sdk.