Go to file
Alexey Chubar 8a6543ada7
Publish PHP Package / docker (push) Successful in 6s Details
Introduced 'go_json_quote' token so wrapping numbers with strings are now optional
2024-05-02 16:37:19 +03:00
.gitea/workflows Добавить .gitea/workflows/build_composer.yaml 2024-02-13 15:08:41 +03:00
src Introduced 'go_json_quote' token so wrapping numbers with strings are now optional 2024-05-02 16:37:19 +03:00
tpl fix saving table_json_kv field diff 2024-03-05 20:24:15 +03:00
.gitignore Adding README 2022-12-08 19:02:33 +03:00
README.md Adding README 2022-12-08 19:02:33 +03:00
composer.json Bumping deps 2023-08-16 14:38:21 +03:00

README.md

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

Usage example:

$twig = \metagen_go\get_twig();
file_put_contents('bundle.go', 
  $twig->render("codegen_bundle.twig", 
    [
     'package' => 'autogen',
     'meta' => get_meta()
    ]
  )
);