mirror of
https://github.com/friendica/friendica
synced 2024-11-10 03:42:53 +00:00
10 lines
238 B
PHP
Executable file
10 lines
238 B
PHP
Executable file
#!/usr/bin/env php
|
|
<?php
|
|
|
|
use Dice\Dice;
|
|
|
|
require dirname(__DIR__) . '/vendor/autoload.php';
|
|
|
|
$dice = (new Dice())->addRules(include __DIR__ . '/../static/dependencies.config.php');
|
|
|
|
(new Friendica\Core\Console($dice, $argv))->execute();
|