contributte / nextras-orm-generator

:wolf: Rich Nextras\ORM entity generator for fast prototyping your new project.
https://contributte.org/packages/contributte/nextras-orm-generator.html
MIT License
20 stars 14 forks source link

Singularize #4

Closed dakorpar closed 5 years ago

dakorpar commented 5 years ago

Converting plural table name to singular class names

for example you have table users in database, when running now it will create

Users 
UsersRepository 
UsersMapper
UsersFacade

This allows you to set on any type (repository/entity/mapper/facade) conversion to singular. If U choose singularize option for all then you'll get

User
UserRepository 
UserMapper
UserFacade

I'm using doctrine Inflector for converting plural form to singular