定制 symfony2admingenerator/twig-generator 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

symfony2admingenerator/twig-generator

最新稳定版本:v2.1.0

Composer 安装命令:

composer require symfony2admingenerator/twig-generator

包简介

A generator for PHP code based on Twig template engine

README 文档

README

TwigGenerator is a PHP code generator based on the Twig template engine. It leverages the power of Twig templates to simplify the generation of PHP code, to make it more extensible, and more readable.

Installation

Use composer to take advantage of this bundle:

composer require "symfony2admingenerator/twig-generator" 

Usage

To generate PHP classes, you need to create a "Builder", and one or more Twig templates. Then, add the new Builder to a "Generator", and generate the result.

Creating a Builder class

First, create a class extending TwigGenerator\Builder\BaseBuilder - no need for methods at start.

<?php namespace MyProject\Builder; use TwigGenerator\Builder\BaseBuilder; class MyBuilder extends BaseBuilder { }

Tip: Alternatively, a builder can implement the TwigGenerator\Builder\BuilderInterface if it has to extend a custom class.

Creating Twig Templates

Next, create a couple twig templates under the templates/ directory. Usually, you need at least one template for the main structure, plus one template per feature added to the class.

Here is an example main template (or layout) for creating a custom PHP class (to be stored in templates/_base/common.php.twig):

<?php {{ namespace is defined ? "namespace " ~ namespace ~ ";" : "" }} class {{ className }} {{ extends is defined ? "extends " ~ extends : "" }} { {% block functions %} {% endblock %} }

And now, an example for adding a custom method (to be stored in templates/MyBuilder.php.twig):

{% extends "_base/common.php.twig" %} {% block functions %} public function tellMeHello() { echo "Hello world"; } {% endblock %} 

Generating the code

Use a TwigGenerator\Builder\Generator instance to generate the result. For instance:

<?php // initialize the autoload require_once '/path/to/TwigGenerator/src/autoload.php'; // alternatively, use your favorite PSR-0 autoloader configured with TwigGenerator, Symfony and Twig // initialize a builder $builder = new MyProject\Builder\MyBuilder(); $builder->setOutputName('MyBuilder.php'); // add specific configuration for my builder $builder->setVariable('className', 'MyBuilder'); // create a generator $generator = new TwigGenerator\Builder\Generator(); $generator->setTemplateDirs(array( __DIR__.'/templates', )); // allways regenerate classes even if they exist -> no cache $generator->setMustOverwriteIfExists(true); // set common variables $generator->setVariables(array( 'namespace' => 'MyProject\Generated', )); // add the builder to the generator $generator->addBuilder($builder); // You can add other builders here // Run generation for all builders $generator->writeOnDisk(__DIR__.'/Generated');

The file will be generated in MyProject\Generated\MyBuilder.php, as follows:

<?php namespace MyProject\Generated; class MyBuilder { public function tellMeHello() { echo "Hello world"; } }

Other Examples

You can see some basic code generation samples in the tests, and on some GitHub repositories like fzaninotto/Doctrine2ActiveRecord, or cedriclombardot/AdmingeneratorGeneratorBundle.

Running the tests

After installing dependencies through composer, you can use phpunit from vendor files:

 vendor/phpunit/phpunit/phpunit 

统计信息

  • 总下载量: 25.13k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 1
  • 依赖项目数: 1
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 3
  • Forks: 25
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-01-04

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固