2018-03-18 18:26:51 +01:00
|
|
|
#!/usr/bin/env php
|
2018-03-18 10:12:39 +01:00
|
|
|
<?php
|
|
|
|
|
2018-12-24 15:56:48 +01:00
|
|
|
require dirname(__DIR__) . '/vendor/autoload.php';
|
2018-03-18 10:12:39 +01:00
|
|
|
|
2019-07-21 01:22:10 +02:00
|
|
|
$dice = new \Dice\Dice();
|
|
|
|
$dice = $dice->addRules(include __DIR__ . '/../static/dependencies.config.php');
|
|
|
|
|
2019-07-21 20:24:16 +02:00
|
|
|
\Friendica\BaseObject::setDependencyInjection($dice);
|
2018-03-18 10:12:39 +01:00
|
|
|
|
2018-03-31 04:56:04 +02:00
|
|
|
(new Friendica\Core\Console($argv))->execute();
|