mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-22 08:56:42 -06:00
31 lines
1.0 KiB
PHP
Executable File
31 lines
1.0 KiB
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
use Shlinkio\Shlink\CLI\Factory\InstallApplicationFactory;
|
|
use Shlinkio\Shlink\CLI\Install\Plugin\DatabaseConfigCustomizerPlugin;
|
|
use Symfony\Component\Console\Application;
|
|
use Symfony\Component\Console\Helper\QuestionHelper;
|
|
use Symfony\Component\Filesystem\Filesystem;
|
|
use Zend\ServiceManager\AbstractFactory\ConfigAbstractFactory;
|
|
use Zend\ServiceManager\Factory\InvokableFactory;
|
|
use Zend\ServiceManager\ServiceManager;
|
|
|
|
chdir(dirname(__DIR__));
|
|
|
|
require __DIR__ . '/../vendor/autoload.php';
|
|
|
|
$container = new ServiceManager([
|
|
'factories' => [
|
|
Application::class => InstallApplicationFactory::class,
|
|
Filesystem::class => InvokableFactory::class,
|
|
QuestionHelper::class => InvokableFactory::class,
|
|
],
|
|
'services' => [
|
|
'config' => [
|
|
ConfigAbstractFactory::class => [
|
|
DatabaseConfigCustomizerPlugin::class => [QuestionHelper::class, Filesystem::class]
|
|
],
|
|
],
|
|
],
|
|
]);
|
|
$container->build(Application::class)->run();
|