15 lines
325 B
PHP
Executable file
15 lines
325 B
PHP
Executable file
#!/usr/bin/env php
|
|
<?php
|
|
|
|
require __DIR__.'/bootstrap.php';
|
|
|
|
use pgrep\DefaultCommand;
|
|
use Symfony\Component\Console\Application;
|
|
|
|
$application = new Application('echo', '1.0.0');
|
|
$command = new DefaultCommand();
|
|
|
|
$application->add($command);
|
|
|
|
$application->setDefaultCommand($command->getName(), true);
|
|
$application->run();
|