forked from zer.ooo/web
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
333 B
PHP
16 lines
333 B
PHP
#!/usr/bin/env php
|
|
<?php
|
|
|
|
$basedir = realpath(__DIR__ . '/../');
|
|
# All calls are now relative to the root directory
|
|
chdir($basedir);
|
|
|
|
include $basedir . '/vendor/autoload.php';
|
|
|
|
$core = new \Eater\Glim\Core();
|
|
$core->startTimer(["total"]);
|
|
$core->boot($basedir);
|
|
echo $core->get('user')->createInvite();
|
|
$core->endTimer(["total"]);
|
|
|