Skip to content

Commit f894d94

Browse files
committed
Remove the self-update command.
It apparently wasn't working (the manifest file didn't exist) and is based on a deprecated package.
1 parent 27f477c commit f894d94

File tree

4 files changed

+3
-333
lines changed

4 files changed

+3
-333
lines changed

composer.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,9 @@
2020
"issues": "https://github.com/tomzx/php-semver-checker/issues"
2121
},
2222
"require": {
23-
"php": ">=5.5.0",
23+
"php": ">=5.5.9",
2424

2525
"hassankhan/config": "^0.10",
26-
"herrera-io/phar-update": "^2.0",
2726
"nikic/php-parser": "^3.1",
2827
"symfony/console": "^2.7|^3.0",
2928
"symfony/yaml": "^2.7|^3.0",

composer.lock

+2-291
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/PHPSemVerChecker/Console/Application.php

-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
namespace PHPSemVerChecker\Console;
44

55
use PHPSemVerChecker\Console\Command\CompareCommand;
6-
use PHPSemVerChecker\Console\Command\SelfUpdateCommand;
76
use Symfony\Component\Console\Application as SymfonyApplication;
87

98
class Application extends SymfonyApplication {
@@ -31,7 +30,6 @@ protected function getDefaultCommands()
3130
{
3231
$commands = parent::getDefaultCommands();
3332
$commands[] = $this->add(new CompareCommand());
34-
$commands[] = $this->add(new SelfUpdateCommand());
3533
return $commands;
3634
}
3735
}

src/PHPSemVerChecker/Console/Command/SelfUpdateCommand.php

-38
This file was deleted.

0 commit comments

Comments
 (0)