tiriel/appengine-bridge

Symfony Bridge for deployment on Google Cloud AppEngine

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

This package is auto-updated.

Last update: 2024-05-07 10:06:16 UTC


README

Currently very much a Work in Progress

Installation

First, download the dependency:

composer require tiriel/appengine-bridge

Then, replace the BaseKernel class in you src/Kernel.php file with the one from this bridge:

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

class Kernel extends AppEngineKernel
{
    use MicroKernelTrait;
}

That's it!