mirror of
https://github.com/code-rhapsodie/connector-gemini.git
synced 2026-03-24 06:32:08 +01:00
19 lines
384 B
PHP
19 lines
384 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use CodeRhapsodie\Tests\Integration\ConnectorGemini\Kernel;
|
|
use Symfony\Bundle\FrameworkBundle\Console\Application;
|
|
|
|
require_once dirname(__DIR__) . '/vendor/autoload.php';
|
|
|
|
chdir(dirname(__DIR__));
|
|
|
|
$kernel = new Kernel('test', true);
|
|
$kernel->boot();
|
|
|
|
$application = new Application($kernel);
|
|
$application->setAutoExit(false);
|
|
|
|
$kernel->shutdown();
|