Skip to content

Latest commit

 

History

History
44 lines (31 loc) · 1.42 KB

CHANGELOG.md

File metadata and controls

44 lines (31 loc) · 1.42 KB

1.4

  • Removed our tests from the archive to avoid polluting the user's auto-completion of classes #147

  • Fixed some minor bugs! #150 #145

1.3

  • Drastically improved make:entity command, which now supports adding fields, relationships, updating existing entities, and generating (with the --regenerate flag) missing properties/getters/setters (effectively replaces doctrine:generate:entities)
    • thanks to @weaverryan in #104

1.2

  • New maker command! make:crud - thanks to @sadikoff in #113.

  • Greatly improved make:form command that auto-adds fields if your form is bound to an entity class - thanks to @sadikoff in #113.

1.1

  • [BC BREAK] The MakerInterface changed: getParameters(), getFiles() and writeNextStepsMessage() were removed and generate() was added in their place. We recommend extending AbstractMaker instead of implementing the interface directly, and use $this->writeSuccessMessage() to get the normal "success" message after the command #120 via @weaverryan

  • Added new make:migration command, which wraps the normal doctrine:migrations:diff command #97 via @weaverryan

  • Added new make:fixtures command to generate an empty fixtures class #105 via @javiereguiluz

  • Added PHPDoc to generated entity repositories so that your IDE knows what type of objects are returned #116 @enleur

  • Allowed generation of all classes into sub-namespaces #120 via @weaverryan