forked from php-pm/php-pm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConfigCommand.php
42 lines (32 loc) · 1.11 KB
/
ConfigCommand.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
namespace PHPPM\Commands;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class ConfigCommand extends Command
{
use ConfigTrait;
/**
* {@inheritdoc}
*/
protected function configure()
{
parent::configure();
$this
->setName('config')
->setDescription('Configure ppm.json in current folder');
$this->configurePPMOptions($this);
}
protected function execute(InputInterface $input, OutputInterface $output)
{
$config = $this->loadConfig($input, $output);
$this->renderConfig($output, $config);
$newContent = json_encode($config, JSON_PRETTY_PRINT);
if (file_exists($this->file) && $newContent === file_get_contents($this->file)) {
$output->writeln(sprintf('No changes to %s file.', realpath($this->file)));
return;
}
file_put_contents($this->file, $newContent);
$output->writeln(sprintf('<info>%s file written.</info>', realpath($this->file)));
}
}