Я развертываю приложение Laravel в стандартной среде Google App Engine, но у меня возникает ошибка компоновщика PHP из-за проблем с зависимостями, в настоящее время я выполняю gcloud app deploy
.
У меня естьследовал всем инструкциям этого руководства Google (https://cloud.google.com/community/tutorials/run-laravel-on-appengine-standard), но у них не было ни одного раздела по устранению неполадок, объясняющего это
Это ошибка, которую я получаю в терминале после gcloud app deploy
:
Updating service [default]...failed.
ERROR: (gcloud.app.deploy) Error Response: [9] Cloud build 245bdb05-2dfa-4fe6-bdca-5e3e99221de1 status: FAILURE.
Error ID: 990D4641.
Error type: InternalError.
Error message: `composer_install` had stderr output:
Loading composer repositories with package information
Installing dependencies from lock file
Your requirements could not be resolved to an installable set of packages.
Problem 1
- Installation request for ext-protobuf 3.7.0 -> satisfiable by ext-protobuf[3.7.0].
- google/gax 1.0.0 conflicts with ext-protobuf[3.7.0].
- Installation request for google/gax 1.0.0 -> satisfiable by google/gax[1.0.0].
To enable extensions, verify that they are enabled in your .ini files:
- /etc/php.ini
You can also run `php --ini` inside terminal to see which files are used by PHP in CLI mode.
error: `composer_install` returned code: 2.
Вот мой app.yaml:
env_variables:
## Put production environment variables here.
APP_KEY: [my_app_key]
APP_STORAGE: /tmp
VIEW_COMPILED_PATH: /tmp
CACHE_DRIVER: database
SESSION_DRIVER: database
## Set these environment variables according to your CloudSQL configuration.
DB_DATABASE: [my_db]
DB_USERNAME: root
DB_PASSWORD: [my_super_secure_password]
DB_SOCKET: "/cloudsql/test-project]:us-east1:test-db"
LOG_CHANNEL: stackdriver
Мне нужно иметь возможность развернуть приложение без ошибок PHP-компоновщика в стандартной среде Google App Engine.