Go to file
Pavel Shevaev ab4a7f7fe7
Publish PHP Package / docker (push) Successful in 6s Details
Обновить composer.json
2025-05-19 19:34:38 +03:00
.gitea/workflows Добавить .gitea/workflows/build_composer.yaml 2024-02-13 15:07:21 +03:00
src Services codegen is now a part of standard codegen 2025-05-19 19:21:07 +03:00
tpl Services codegen is now a part of standard codegen 2025-05-19 19:21:07 +03:00
.gitignore Minor tweaks 2022-12-07 17:19:24 +03:00
CHANGELOG.md Using a shared helper method to streamline the generated code 2025-04-18 17:55:49 +03:00
README.md Обновить README.md 2024-12-18 18:38:43 +03:00
composer.json Обновить composer.json 2025-05-19 19:34:38 +03:00

README.md

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

Usage example:

$output = \metagen_cs\codegen(null, get_meta(), 
[
  'namespace' => 'BitGames.Autogen'
]);
foreach($output as $name => $text)
  file_put_contents($name, $text);