authanram / generators
Language independent code generation
Fund package maintenance!
authanram
Installs: 69
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Type:package
Requires
- php: ^8.0
- illuminate/container: ^9.0
- illuminate/filesystem: ^9.0
- illuminate/pipeline: ^9.0
- illuminate/support: ^9.0
- webmozart/assert: ^1.10
Requires (Dev)
- nunomaduro/phpinsights: ^2.0
- pestphp/pest: ^1.20
- pestphp/pest-plugin-mock: ^1.0
This package is auto-updated.
Last update: 2024-11-20 23:48:46 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.