composer create-project symfony-cmf/standard-edition <path-to-install> '~1.2'
Everything works until I try to load the fixtures using:
php app/console doctrine:phpcr:fixtures:load
I get an error: 'Attempted to call method "transactional" on class "Doctrine\ODM\PHPCR\DocumentManager"'
The current installed version of doctrine/phpcr-odm is 1.2.2 and there is no method transactional() on the DocumentManager. That method seems to have been added later.
Am I doing something wrong?
Tom