2023-01-19 17:25:51 +00:00
|
|
|
<?php
|
|
|
|
|
2023-01-19 18:11:24 +00:00
|
|
|
use OliverDaviesLtd\BuildConfiguration\Console\Command\BuildConfigurationCommand;
|
2023-01-19 17:25:51 +00:00
|
|
|
use Symfony\Component\Console\Application;
|
|
|
|
|
|
|
|
require __DIR__ . '/vendor/autoload.php';
|
|
|
|
|
|
|
|
$app = new Application();
|
2023-01-19 18:11:24 +00:00
|
|
|
|
|
|
|
$app->addCommands([
|
|
|
|
new BuildConfigurationCommand(),
|
|
|
|
]);
|
|
|
|
|
2023-01-19 17:25:51 +00:00
|
|
|
$app->run();
|