Go to file
Pavel Merzlyakov 1bf00c816f fix DiffCollection 2023-09-11 11:14:55 +03:00
src Adhering to new metagen interface 2023-08-16 14:19:29 +03:00
tpl fix DiffCollection 2023-09-11 11:14:55 +03: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()
    ]
  )
);