Vous êtes connecté en tant que anonymous Se Deconnecter
Browse code

Ajout d'une autre application symfony 5.0.99 afin de tester le partage de la variable $_SESSION -->OK

TODO: ajouter un plug-in symfony permettant de charger un utilisateur dans les apps a partir de l'authentification multiple

TODO: lire les documentation officielles provenant des 4 plate-formes tranquillement afin de comprendre commet doit on tester ces type d'auth quitte a créé un sous domaine particulier directement hebergé sur gittea
-->Sécuriser le serveur de dev

Emmanuel ROY authored on 23/11/2019 03:00:32
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,15 @@
1
+<?php
2
+
3
+return [
4
+    Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
5
+    Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true],
6
+    Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
7
+    Twig\Extra\TwigExtraBundle\TwigExtraBundle::class => ['all' => true],
8
+    Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true],
9
+    Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
10
+    Symfony\Bundle\DebugBundle\DebugBundle::class => ['dev' => true, 'test' => true],
11
+    Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
12
+    Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true],
13
+    Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle::class => ['all' => true],
14
+    Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true],
15
+];