我有一个奇怪的推进问题。我的配置config.yml
:
propel:
dbal:
driver: %database_driver%
user: %database_user%
password: %database_password%
dsn: %database_driver%:host=%database_host%;dbname=%database_name%;charset=UTF8
path: %kernel.root_dir%/../vendor/propel
phing_path: %kernel.root_dir%/../vendor/phing
我用那个命令创建了我的数据库:php app/console propel:database:create
它运行得很好,但是当我尝试创建我的第一个表时,php app/console propel:model:build
我遇到了一个致命错误:PHP Fatal error: Class 'Phing' not found.
我在文件夹中验证,一切都在那里。我想这是一个自动加载问题,但我遵循了http://www.propelorm.org/cookbook/symfony2/working-with-symfony2.html和http://symfony.com/doc/master/book上的文档/propel.html
任何想法?非常感谢!