Я пытаюсь получить команды из командной строки для работы с использованием Symfony. У меня есть следующая структура папок:
Теперь в моем файле консоли у меня есть следующий код:
#!/usr/bin/env php
<?php
require_once '/../vendor/autoload.php';
use Source\Commands\TwitterCommand;
use Symfony\Component\Console\Application;
use Endroid\Twitter\Twitter;
//API Keys
...
$client = new Twitter($consumerKey, $consumerSecret, $accessToken, $accessTokenSecret);
$application = new Application();
$application->add(new TwitterCommand($client));
$application->run();
И тогда в моем TwitterCommand.php у меня есть следующее:
<?php
namespace Source\Commands;
use Twitter;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Formatter\OutputFormatterStyle;
class TwitterCommand extends Command
{
private $client;
public function __construct(Twitter $client)
{
parent::__construct();
$this->client = $client;
}
protected function configure()
{
$this
->setName('freq:tweet')
->setDescription('Show the tweets')
}
protected function execute(InputInterface $input, OutputInterface $output)
{
// Retrieve the user's timeline
$tweets = $twitter->getTimeline(array(
'count' => 5
));
// Or retrieve the timeline using the generic query method
$response = $twitter->query('statuses/user_timeline', 'GET', 'json', $parameters);
$tweets = json_decode($response->getContent());
$output->writeln($tweets);
}
}
Проблема в том, что я получаю «Фатальную ошибку: класс« Source \ Commands \ TwitterCommand »не найден в C: …», и ошибка отправляется в этой строке:
$application->add(new TwitterCommand($client));
Есть идеи, что я делаю не так?
Если вы хотите, чтобы ваш класс загружался автоматически, вы должны выполнить пар PSR-0 стандарт. В composer.json вашего проекта вы, вероятно, определили что-то вроде этого:
"autoload": {
"psr-0": { "": "src/" }
},
Ваш путь к файлу класса должен быть src / Source / Commands / TwitterCommand.php
Других решений пока нет …