16 lines
272 B
PHP
Executable File
16 lines
272 B
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
|
|
require_once __DIR__ . '/vendor/autoload.php';
|
|
|
|
use MenulisAi\Pdfgen\Register;
|
|
use Symfony\Component\Console\Application;
|
|
|
|
$app = new Application("Pdfgen", "0.0.1");
|
|
|
|
$register = new Register;
|
|
|
|
$app->addCommands($register->init());
|
|
|
|
$app->run();
|