Go to file
Alexey Chubar d0df923c43 Fixed more than one collection of the same type causing compiler errors 2023-10-13 18:17:35 +04:00
src Adhering to new metagen interface 2023-08-16 14:19:29 +03:00
tpl Fixed more than one collection of the same type causing compiler errors 2023-10-13 18:17:35 +04:00
.gitignore Minor tweaks 2022-12-07 17:19:24 +03:00
README.md Adding basice README 2022-12-07 17:25:44 +03:00
composer.json Bumping deps 2023-08-16 14:36:12 +03:00

README.md

This package is used for code generation of C# meta structs using Twig templates

Usage example:

$twig = \metagen_cs\get_twig();
file_put_contents('bundle.cs', 
  $twig->render("codegen_bundle.twig", 
    [
     'namespace' => 'BitGames.Autogen',
     'meta' => get_meta()
    ]
  )
);