Add initial command, get values from build.yaml

This commit is contained in:
Oliver Davies 2023-01-19 18:11:24 +00:00
parent cc9a65ba96
commit c476543f5c
4 changed files with 124 additions and 3 deletions

View file

@ -1,8 +1,14 @@
<?php
use OliverDaviesLtd\BuildConfiguration\Console\Command\BuildConfigurationCommand;
use Symfony\Component\Console\Application;
require __DIR__ . '/vendor/autoload.php';
$app = new Application();
$app->addCommands([
new BuildConfigurationCommand(),
]);
$app->run();