Download the PHP package dodo-it/entity-generator without Composer
On this page you can find all versions of the php package dodo-it/entity-generator. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package entity-generator
Entity generator
Highly customizable (typed) entity generator from database. It can generate entities for whole database, table/view and from raw SQL query
Installation
$ composer require dodo-it/entity-generator
How to run:
What kind of entities can I get?
Tool is highly customizable and can generate various different entity types of which most interesting are:
-
PHP 7.4 typed properties
- properties with phpdoc
-
properties with getters and setters (methods body is customizable)
-
phpdoc properties
-
properties with phpdoc
-
it can generate column constants (use generateColumnConstants option)
- almost any combination you can imagine, check src/Generator/Config.php for list of all options see example folder
You can add your own methods to entities and change getter/setter functions, they won't be overriden when regenerated if rewrite flag is set to false
Configuration
see src/Generator/Config.php
Docker integration
Entity Generator image
https://hub.docker.com/r/pifou25/entity-generator
Generation from existing database
The database should be accessible from the docker network, the hostname is either
the name of the Mysql running container, or localhost
if db is running on host.
The below command will generate entities into ./entities
directory.
namespace and extends example
The base class must exist into /entities to be declared
Generation from flat plain SQL file
The docker compose
file create a new database and initialize it with SQL data,
you have to put SQL init file into ./examples
directory. When db is ready,
the entity-generator start on it to generate PHP entities.
It is as simple as running this command from the docker
directory :
docker compose up
All versions of entity-generator with dependencies
nette/utils Version ^3.1|^4.0
nette/php-generator Version ^4.0
doctrine/inflector Version ^2.0