我下面這個教程:http://tutorial.symblog.co.uk/docs/extending-the-model-blog-comments.html#doctrine-2-migrationsSymfony的2.1.7和學說的遷移包錯誤
1)安裝學說遷移捆綁
1.1) - 加入
"doctrine/migrations": "dev-master",
"doctrine/doctrine-migrations-bundle": "dev-master"
到composer.json
1.2)運行
php composer.phar update
2)AppKernel.php
3)加入
new Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle(),
運行
php app/console doctrine:migrations:diff
這應該運行的命令,並查找當前實體和數據庫之間的差異,是嗎? 但我得到一個錯誤,而不是:
Fatal error: Class 'Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle' not found in D:\xampp\htdocs\symblog.dev\app\AppKernel.php on line 23
這也正是(2)
行你能幫助我嗎?歡迎任何建議!
你有沒有運行'php composer.phar update'的問題? – cheesemacfly
作曲家沒有問題,捆綁安裝好了,但是當我將它們添加到AppKernel.php時,它會打散; P –