Skip to content

Commit

Permalink
Changing Updater to use ints rather than semver. (#1181)
Browse files Browse the repository at this point in the history
* Changing Updater to use ints rather than semver.

* Add backwards compatibility.

* Maybe fixing things...travis failing.

* Coder fixes.

* Making longer versions.
  • Loading branch information
grasmash authored Mar 14, 2017
1 parent c723c1c commit 1f291a7
Show file tree
Hide file tree
Showing 12 changed files with 360 additions and 251 deletions.
2 changes: 2 additions & 0 deletions bin/blt-console
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

use Acquia\Blt\Console\Command\ConfigurePhantomJsCommand;
use Acquia\Blt\Console\Command\ComposerMungeCommand;
use Acquia\Blt\Console\Command\SchemaVersionCommand;
use Acquia\Blt\Console\Command\YamlMungeCommand;
use Acquia\Blt\Console\Command\UpdateCommand;
use Symfony\Component\Console\Application;
Expand All @@ -27,6 +28,7 @@ $application = new Application();
$application->add(new ConfigurePhantomJsCommand());
$application->add(new ComposerMungeCommand());
$application->add(new YamlMungeCommand());
$application->add(new SchemaVersionCommand());
$application->add(new UpdateCommand());

$application->run();
3 changes: 1 addition & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,7 @@
"phpunit/phpunit": "^4.8",
"squizlabs/php_codesniffer": "^2.7",
"symfony/yaml": "^2.8.11",
"symfony/console": "^2.8.11",
"vierbergenlars/php-semver": "^3.0"
"symfony/console": "^2.8.11"
},
"autoload": {
"psr-4": {
Expand Down
Loading

0 comments on commit 1f291a7

Please sign in to comment.