tiriel/appengine-bridge

Symfony Bridge for deployment on Google Cloud AppEngine

Maintainers

Package info

github.com/Tiriel/symfony-appengine-bridge

pkg:composer/tiriel/appengine-bridge

Statistics

Installs: 23

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

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

This package is auto-updated.

Last update: 2026-03-07 14:19:43 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!