authanram/generators

Language independent code generation

Fund package maintenance!
authanram

Installs: 68

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 2

Forks: 0

Open Issues: 0

Type:package

1.1.0 2022-02-11 18:12 UTC

This package is auto-updated.

Last update: 2024-04-20 22:41:02 UTC


README

This package is about language independent code generation, in next to no time.

Installation

You can install the package via composer.

composer require authanram/generators

Basic Usage Example

Here's an example of how it can be used in a very basic way:

(new Authanram\Generators\Generator())
    ->withTemplate('first {{ second }} third {{ fourth }}')
    ->withInput(['second' => '2nd', 'fourth' => '4th'])
    ->get();

This will lead to the following result:

first 2nd third 4th

Documentation

To learn all about this package, head over to the documentation.

(Note: The documentation is currently under construction.)

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see the contribution guide for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.