platformsh/laravel-bridge 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

platformsh/laravel-bridge

最新稳定版本:2.2.2

Composer 安装命令:

composer require platformsh/laravel-bridge

包简介

Bridge library for running Symfony Flex on Platform.sh

README 文档

README

This simple bridge library connects a Laravel-based application to Platform.sh. In the typical case it should be completely fire-and-forget.

Laravel prefers all configuration to come in through environment variables with specific names in a specific format. Platform.sh provides configuration information as environment variables in a different specific format. This library handles mapping the Platform.sh variables to the format Laravel expects for common values.

Usage

Simply require this package using Composer. When Composer's autoload is included this library will be activated and the environment variables set. As long as that happens before Laravel bootstraps its configuration (which it almost certainly will) everything should work fine with no further user-interaction necessary.

composer require platformsh/laravel-bridge

Note make sure to clear the cache on relevant platform.sh environments after updating this package.

php artisan cache:clear

Mappings performed

  • If a Platform.sh relationship named database is defined, it will be taken as an SQL database and mapped to the DB_* environment variables for Laravel.

  • If a Platform.sh relationship named rediscache is defined, it will be mapped to the REDIS_* environment variables for Laravel. Additionally, the CACHE_DRIVER (up to Laravel v10) and CACHE_STORE (Laravel v11+) variables will be set to redis to activate it automatically.

  • If a Platform.sh relationship named redissession is defined, the SESSION_DRIVER will be set to redis and the REDIS_* variables set based on that relationship. NOTE: This means you must set 2 relationships to the same Redis service and endpoint, as Laravel reuses the same backend connection.

  • The Laravel APP_KEY is set based on the PLATFORM_PROJECT_ENTROPY variable, which is provided for exactly this purpose.

  • The Laravel APP_URL variable is set based on the current route if possible.

  • The SESSION_SECURE_COOKIE variable is set to true if it's not already defined. A Platform.sh environment is by default encrypted-always, so there's no reason to allow unencrypted cookies. This can be overridden by setting the Platform.sh variable env:SESSION_SECURE_COOKIE to 0.

  • The MAIL_DRIVER, MAIL_HOST, and MAIL_PORT variables are set to support sending email through the Platform.sh mail gateway. The MAIL_ENCRYPTION value is also set to 0 to disable TLS, as it is not needed or supported within Platform.sh's network. Note, however, that doing so is only supported on Laravel 6.0.4 and later. On earlier versions you must manually modify mail.php and set encryption to null:

    'encryption' => null,

Common environment variables not set

Laravel provides reasonable defaults for many environment variables already and this library does not override those. They may, however, be customized by setting a Platform.sh variable named env:ENV_NAME. (Note the env: prefix.) The most likely variables to override are listed below for convenience:

  • env:APP_NAME: The human-friendly name of the application.
  • env:APP_ENV: Whether the application is in production or development mode.
  • env:APP_DEBUG: Set true to enable verbose error messages.

统计信息

  • 总下载量: 270.86k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 8
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 8
  • Watchers: 13
  • Forks: 17
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2018-06-21