aboutsummaryrefslogtreecommitdiffhomepage
path: root/bin/shell
blob: d699a14c620b7ffd05df78304439461747058dbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
# set up autoloads<?php echo "\n"; goto skipShell; ?>
cd "$(dirname "$0")/../" || exit 1
php -a -d auto_prepend_file=bin/shell
exit

<?php skipShell:
require __DIR__ . '/../vendor/autoload.php';
foreach (glob(__DIR__ . '/../misc/*.php') as $filename) {
    require $filename;
}