mensagemsei / doctrine-generator
Generator to Doctrine ORM 2
v1.0.0
2019-08-18 17:55 UTC
Requires
- php: >=5.4
- doctrine/orm: v2.6.3
This package is auto-updated.
Last update: 2025-04-11 00:53:10 UTC
README
A PHP package customized to generate entity and repository classes of a project that uses Doctrine ORM in a command-line interface.
Installation
composer require mensagemsei/doctrine-generator --dev
Usage
Before, you need create a PHP file named generator.php with the following code:
require_once 'vendor/autoload.php'; // TODO: Add an instance of the EntityManager and assigns in a variable named $em Generator\Application::run($em);
To view a list of all available commands, you may use the list command:
php generator.php list
To view all arguments and options, you may use the help command:
php generator.php doctrine:generate --help