-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsirius
More file actions
40 lines (30 loc) · 1002 Bytes
/
sirius
File metadata and controls
40 lines (30 loc) · 1002 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/env php
<?php declare(strict_types=1);
foreach (array(__DIR__ . '/../../autoload.php', __DIR__ . '/../vendor/autoload.php', __DIR__ . '/vendor/autoload.php') as $file) {
if (file_exists($file)) {
define('SIRIUS_COMPOSER_INSTALL', $file);
break;
}
}
unset($file);
if (!defined('SIRIUS_COMPOSER_INSTALL')) {
fwrite(
STDERR,
'You need to set up the project dependencies using Composer:' . PHP_EOL . PHP_EOL .
' composer install' . PHP_EOL . PHP_EOL .
'You can learn all about Composer on https://getcomposer.org/.' . PHP_EOL
);
die(1);
}
require SIRIUS_COMPOSER_INSTALL;
if (php_sapi_name() == 'cli') {
isset($argv[1]) ? $commandName = $argv[1]:$commandName = Sirius\CommandManager::HELP_ARGUMENT;
$arguments = [];
foreach ($argv as $key => $arg) {
if ($key < 2) {
continue;
}
$arguments[] = $arg;
}
Sirius\CommandManager::main($commandName, $arguments);
}