popo/symfony-bridge

Symfony bundle for POPO generator

1.0.1 2023-08-01 14:05 UTC

This package is auto-updated.

Last update: 2024-05-01 00:10:48 UTC


README

Build and run tests

Symfony bundle for POPO Generator.

Installation

composer require popo/symfony-bridge --dev

Setup

Create config/packages/popo.yaml, and setup location of POPO schema files (e.g. config/packages/popo).

Simple version

# config/packages/popo.yaml
popo:
  config:
    - schemaPath: config/packages/popo

Full version

schemaPath is required, all other options can be overwritten.

# config/packages/popo.yaml
# schemaPath is required, other options can be defined in POPO schema file
popo:
  default:
    # namespace: ExampleVendor\App\Example
    outputPath: tests
    namespaceRoot: ExampleVendor\
    schemaPathFilter: # e.g. bundles
    schemaConfigFilename: # e.g. bundles/project.config.yml
    ignoreNonExistingSchemaFolder: false
    schemaFilenameMask: '*.popo.yaml'
    classPluginCollection: []
    mappingPolicyPluginCollection: []
    namespacePluginCollection: []
    phpFilePluginCollection: []
    propertyPluginCollection: []

  config:
    # customer, settings here overwrite the default values
    - schemaPath: config/packages/popo/customer.popo.yaml

    # order, settings here overwrite the default values
    - schemaPath: config/packages/popo/order.popo.yaml

    # product, settings here overwrite the default values
    - schemaPath: config/packages/popo/product.popo.yaml

    # or simply load all at once
    - schemaPath: config/packages/popo

Usage

bin/console popo:generate
Generating POPO files...
Customer:ExampleVendor\App\Customer\Customer -> tests/App/Customer/Customer.php
Order:ExampleVendor\App\Order\Order -> tests/App/Order/Order.php
Order:ExampleVendor\App\Order\OrderItem -> tests/App/Order/OrderItem.php
Product:ExampleVendor\App\Product\Product -> tests/App/Product/Product.php
All done.

See POPO Documentation for more options.

Extending generated classes with custom logic

Adding custom logic to generated POPO classes is easy with plugins. For example to add helloWorld method:

# config/packages/popo.yaml
popo:
  default:
      classPluginCollection:
      - \PopoBundle\Plugin\HelloWorldPopoPlugin

HelloWorld plugin:

class HelloWorldPopoPlugin implements ClassPluginInterface
{
    public function run(BuilderPluginInterface $builder): void
    {
        $builder->getClass()
            ->addMethod('helloWorld')
            ->setReturnType('string')
            ->setBody('return "Hello World";');
    }
}

Generated code:

public function helloWorld(): string
{
    return "Hello World";
}

See POPO Plugins Documentation for more info.