Nymfony is not Symfony
A simple exercise for my students to the different steps of developing a framework.
Views are stored in the View/ directory. Views are rendered from Controllers. The template manager used to generate views is Twig
return $this->render("somepage.html.twig", [
'key' => 'value'
]);
Routes are declared in the core/config/routes.json
file. See Router info
Services are declared in the core/config/services.json
file. See ServiceContainer info