build-configs/build-config.php

15 lines
278 B
PHP
Raw Normal View History

2023-01-19 17:25:51 +00:00
<?php
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();
$app->addCommands([
new BuildConfigurationCommand(),
]);
2023-01-19 17:25:51 +00:00
$app->run();