-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer-graph.php
41 lines (32 loc) · 1023 Bytes
/
composer-graph.php
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
41
<?php
/**
* JBZoo Toolbox - Composer-Graph.
*
* This file is part of the JBZoo Toolbox project.
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @license MIT
* @copyright Copyright (C) JBZoo.com, All rights reserved.
* @see https://github.com/JBZoo/Composer-Graph
*/
declare(strict_types=1);
namespace JBZoo\ComposerGraph;
use JBZoo\Cli\CliApplication;
\define('PATH_ROOT', __DIR__);
$vendorPaths = [
__DIR__ . '/../../autoload.php',
__DIR__ . '/../vendor/autoload.php',
__DIR__ . '/vendor/autoload.php',
];
foreach ($vendorPaths as $file) {
if (\file_exists($file)) {
\define('JBZOO_AUTOLOAD_FILE', $file);
break;
}
}
require_once JBZOO_AUTOLOAD_FILE;
$application = new CliApplication('JBZoo/CI-Report-Converter', '@git-version@');
$application->registerCommandsByPath(__DIR__ . '/src/Commands', __NAMESPACE__);
$application->setDefaultCommand('build');
$application->run();