Download the PHP package natitech/builder-generator without Composer

On this page you can find all versions of the php package natitech/builder-generator. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package builder-generator

Builder generator

License

PHP standalone library to generate a builder pattern from a class.

Installation

By using composer on your project or globally

Usage

You can use the binary to generate a builder near a class :

OR you can use it inside another PHP script :

What will be generated

This will generate a builder class aside the built class.

Example :

The builder class may need to receive updates on codestyle, faker usages, infered types, namespace, etc. Also, to avoid producing unused code, there are no setters for builder properties. Your IDE should be able to easily fix all of that.

The generator will try to detect property types (php types, phpdoc types, doctrine orm attributes or annotations) and will try to detect the appropriate faker method based on the type and the name of the properties.

Faker

You can use the --faker option to try to set the most relevant values. In that case, Faker will be used as a dependency of the builder class.

Build strategies

There are many strategies to build a class : public properties, setter (fluent or not), constructor. A brief explanation on each strategies is given below, but you might prefer read unit tests to fully understand them.

By default, the generator will try to detect the most used strategy inside the built class and will use it for the entire builder class. If you are using setters on all properties but one, the generator will use setters on properties that support it and ignore the property that does not.

But you can also explictly pass a strategy using the '--strategy' option.

Public strategy

When properties are public. See example above.

Constructor strategy

When properties are protected/private and set inside the __construct method.

Setter strategy

When properties are protected/private but can be set using public setters. The setters can be fluent or not.

Build method strategy

This is a less conventionnal way to build a class. In that case, properties are protected/private and set by public domain methods. So, there is no easy way to set the built class in a certain state. If, for test purposes, you want to be able to quickly set the state of that object properties by properties, a solution is to add a static build() method in the built class.

Custom strategy / contributions

To create a custom strategy :

IDE / PHPStorm

You can use this tool as an external tool in your IDE.

For PHPStorm user, see https://www.jetbrains.com/help/phpstorm/configuring-third-party-tools.html. Example configuration :


All versions of builder-generator with dependencies

PHP Build Version
Package Version
Requires php Version ^7.4|^8.0
nette/php-generator Version ^3.2
nikic/php-parser Version ^4.2
phpstan/phpdoc-parser Version ^1.0
symfony/console Version ^6.1
psr/log Version ^1.0 || ^2.0 || ^3.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package natitech/builder-generator contains the following files

Loading the files please wait ....