Entities in symfony 2 have doctrine tags that are preceded with @ORM\ (eg @ORM\Entity).
When using doctrine as a component it expects the tags without the ORM (eg @entity).
If i want to use these entities from a symfony project in another project that uses doctrine but without symfony this causes problems.
How can i set up the non symfony project to use these classes with @ORM\ tags?
At the moment i have gone for the work around suggested by MadManMonty in the comments to me question: