We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb9b39d commit b4697a2Copy full SHA for b4697a2
php-mysql-diff
@@ -1,6 +1,8 @@
1
#!/usr/bin/env php
2
<?php
3
4
+define('APP_VERSION', '1.1.8');
5
+
6
// installed via composer?
7
if (file_exists($a = __DIR__ . '/../../autoload.php')) {
8
require_once $a;
@@ -12,7 +14,7 @@ use Camcima\MySqlDiff\Command\DiffCommand;
12
14
use Camcima\MySqlDiff\Command\MigrateCommand;
13
15
use Symfony\Component\Console\Application;
16
-$application = new Application('PHP MySQL Diff', '1.0.0');
17
+$application = new Application('PHP MySQL Diff', APP_VERSION);
18
$application->add(new MigrateCommand());
19
$application->add(new DiffCommand());
20
$application->run();
0 commit comments