mirror of
https://github.com/opdavies/build-configs.git
synced 2025-02-11 09:06:57 +00:00
15 lines
278 B
PHP
15 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();
|