tiriel / appengine-bridge
Symfony Bridge for deployment on Google Cloud AppEngine
v0.0.1
2024-05-07 09:40 UTC
Requires
- php: ^8.2
- symfony/http-kernel: ^7.0
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!