-
Notifications
You must be signed in to change notification settings - Fork 18
/
run
executable file
·31 lines (26 loc) · 916 Bytes
/
run
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
#!/usr/bin/env php
<?php
require __DIR__.'/vendor/autoload_runtime.php';
use App\DiffRecipeVersionsCommand;
use App\GenerateArchivedRecipesCommand;
use App\GenerateFlexEndpointCommand;
use App\GenerateRecipesReadmeCommand;
use App\LintManifestsCommand;
use App\LintPackagesCommand;
use App\LintPullRequestCommand;
use App\LintYamlCommand;
use App\ListUnpatchedPackagesCommand;
use Symfony\Component\Console\Application;
return function() {
$app = new Application();
$app->add(new DiffRecipeVersionsCommand());
$app->add(new GenerateFlexEndpointCommand());
$app->add(new GenerateArchivedRecipesCommand());
$app->add(new GenerateRecipesReadmeCommand());
$app->add(new LintManifestsCommand());
$app->add(new LintPackagesCommand());
$app->add(new LintPullRequestCommand());
$app->add(new LintYamlCommand());
$app->add(new ListUnpatchedPackagesCommand());
return $app;
};