tiriel/appengine-bridge

适用于Google Cloud AppEngine部署的Symfony桥接器

v0.0.1 2024-05-07 09:40 UTC

This package is auto-updated.

Last update: 2024-09-07 10:46:43 UTC


README

目前仍在积极开发中

安装

首先,下载依赖项

composer require tiriel/appengine-bridge

然后,将你的src/Kernel.php文件中的BaseKernel类替换为该桥接器中的类

use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait;
use Tiriel\AppEngineBridge\Kernel\AppEngineKernel;

class Kernel extends AppEngineKernel
{
    use MicroKernelTrait;
}

就是这样!