1
0
mirror of https://koodu.h-i.works/projects/thebadspace synced 2025-06-25 16:04:37 -05:00

Initial Symfony Set up

Just getting the base framework installed and running so the goodness
can begin
This commit is contained in:
Ro
2022-11-14 15:28:16 -08:00
parent 5bce6b203f
commit 69af37fc16
16 changed files with 2663 additions and 0 deletions

0
src/Controller/.gitignore vendored Normal file
View File

11
src/Kernel.php Normal file
View File

@ -0,0 +1,11 @@
<?php
namespace App;
use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait;
use Symfony\Component\HttpKernel\Kernel as BaseKernel;
class Kernel extends BaseKernel
{
use MicroKernelTrait;
}