forked from BrainMaestro/composer-git-hooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cghooks
executable file
·36 lines (31 loc) · 1.15 KB
/
cghooks
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
#!/usr/bin/env php
<?php
$dir = getcwd();
if (is_file($autoload = __DIR__ . '/vendor/autoload.php')) {
require_once $autoload;
} elseif (is_file($autoload = __DIR__ . '/../../autoload.php')) {
require_once $autoload;
} else {
fwrite(STDERR,
'You must set up the project dependencies, run the following commands:' . PHP_EOL .
'curl -s http://getcomposer.org/installer | php' . PHP_EOL .
'php composer.phar install' . PHP_EOL
);
exit(1);
}
use BrainMaestro\GitHooks\Hook;
use BrainMaestro\GitHooks\Commands\AddCommand;
use BrainMaestro\GitHooks\Commands\UpdateCommand;
use BrainMaestro\GitHooks\Commands\RemoveCommand;
use BrainMaestro\GitHooks\Commands\ListCommand;
use BrainMaestro\GitHooks\Commands\HookCommand;
use Symfony\Component\Console\Application;
$application = new Application('Composer Git Hooks', '3.0.0-alpha.1');
$application->add(new AddCommand());
$application->add(new UpdateCommand());
$application->add(new RemoveCommand());
$application->add(new ListCommand());
foreach (Hook::getValidHooks($dir) as $hook => $script) {
$application->add(new HookCommand($hook, $script, $dir));
}
$application->run();