Is it possible to generate entity files without Doctrine2 bundle in Symfony2 framework? I like the way how fast and easily entities can be generated in console, and FormType can be generated afterwards, based on entity
Now I am using
1. generate:doctrine:entities
2. doctrine:generate:form
3. Remove all ORM annotations and primary key from entity.
- it is a bit lame so I hope there is a Symfony better way.
I do not need to persist entities, I use them for validation and collecting data from forms and then call web services.