ベンダーなしで symfony2 をインストールしようとしていますが、app_dev.php を実行すると次のエラーが発生し続けます:
RuntimeException: The autoloader expected class "Symfony\Component\EventDispatcher\Event" to be defined in file "/var/www/caremonk/vendor/symfony/symfony/src/Symfony/Component/EventDispatcher/Event.php". The file was found but the class was not in it, the class name or namespace probably has a typo.
次の方法で正しいファイルとベンダーをインストールしました: php composer.phar update php composer.phar install
また、Symfony2 が不平を言っているファイルを確認しました。ファイルの内容は次のとおりです。
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\EventDispatcher;
/**
* Event is the base class for classes containing event data.
*
* This class contains no event data. It is used by events that do not pass
* state information to an event handler when an event is raised.
*
* You can call the method stopPropagation() to abort the execution of
* further listeners in your event listener.
*
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
* @author Jonathan Wage <jonwage@gmail.com>
* @author Roman Borschel <roman@code-factory.org>
* @author Bernhard Schussek <bschussek@gmail.com>
*
* @api
*/
class Event
{
// Some more code
}
これは私が触れたことのない標準の symfony2 クラスなので、何をする必要があるのか少し迷っています。このエラーを取り除くにはどうすればよいですか?