mirror of
https://github.com/opdavies/build-configs.git
synced 2025-09-05 19:05:33 +01:00
14 lines
278 B
PHP
14 lines
278 B
PHP
<?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();
|