-
Notifications
You must be signed in to change notification settings - Fork 0
/
musicinfo
50 lines (43 loc) · 1.3 KB
/
musicinfo
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
42
43
44
45
46
47
48
49
50
#!/usr/bin/env php
<?php
if (version_compare('5.6.0', PHP_VERSION, '>')) {
throw new \Exception(
sprintf(
'This version of PHPMusicInfo is supported on PHP 5.6, PHP 7.0, and PHP 7.1.' . PHP_EOL .
'You are using PHP %s (%s).' . PHP_EOL,
PHP_VERSION,
PHP_BINARY
)
);
}
if(!ini_get('date.timezone')) {
ini_set('date.timezone', 'UTC');
}
$composerAutoloadLocations = [
__DIR__ . '/../../autoload.php',
__DIR__ . '/../vendor/autoload.php',
__DIR__ . '/vendor/autoload.php'
];
$composerFound = false;
foreach($composerAutoloadLocations as $file) {
if(file_exists($file)) {
$composerFound = true;
include_once $file;
}
}
if(!$composerFound) {
throw new \Exception(
'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
);
}
unset($file);
use Symfony\Component\Console\Application;
$app = new Application('PHPMusicInfo', '0.1.0');
$app->addCommands([
new \Pbxg33k\MusicInfo\Command\SearchArtistCommand(),
new \Pbxg33k\MusicInfo\Command\SearchTrackCommand(),
new \Pbxg33k\MusicInfo\Command\SearchAlbumCommand()
]);
$app->run();