Skip to content

Commit

Permalink
prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
spiralbot committed Sep 16, 2022
1 parent 180c728 commit 945429d
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
14 changes: 7 additions & 7 deletions composer.json
Expand Up @@ -28,14 +28,14 @@
],
"require": {
"php": ">=8.1",
"spiral/core": "^3.1",
"spiral/hmvc": "^3.1",
"spiral/tokenizer": "^3.1",
"symfony/console": "^6.0",
"spiral/events": "^3.1"
"spiral/core": "^3.0.1",
"spiral/events": "^3.0.1",
"spiral/hmvc": "^3.0.1",
"spiral/tokenizer": "^3.0.1",
"symfony/console": "^6.0"
},
"require-dev": {
"spiral/boot": "^3.1",
"spiral/boot": "^3.0.1",
"phpunit/phpunit": "^9.5.20",
"mockery/mockery": "^1.5",
"vimeo/psalm": "^4.27"
Expand All @@ -52,7 +52,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "3.1.x-dev"
"dev-master": "3.0.x-dev"
}
},
"config": {
Expand Down
7 changes: 7 additions & 0 deletions psalm.xml
Expand Up @@ -15,4 +15,11 @@
<projectFiles>
<directory name="src" />
</projectFiles>
<issueHandlers>
<UndefinedClass>
<errorLevel type="suppress">
<referencedClass name="Spiral\Console\ConsoleDispatcher" />
</errorLevel>
</UndefinedClass>
</issueHandlers>
</psalm>
7 changes: 0 additions & 7 deletions src/Bootloader/ConsoleBootloader.php
Expand Up @@ -6,17 +6,13 @@

use Spiral\Boot\AbstractKernel;
use Spiral\Boot\Bootloader\Bootloader;
use Spiral\Command\CleanCommand;
use Spiral\Command\PublishCommand;
use Spiral\Config\ConfiguratorInterface;
use Spiral\Config\Patch\Append;
use Spiral\Config\Patch\Prepend;
use Spiral\Console\CommandLocator;
use Spiral\Console\CommandLocatorListener;
use Spiral\Console\Config\ConsoleConfig;
use Spiral\Console\Console;
use Spiral\Console\ConsoleDispatcher;
use Spiral\Console\LocatorInterface;
use Spiral\Console\Sequence\CallableSequence;
use Spiral\Console\Sequence\CommandSequence;
use Spiral\Core\Container\SingletonInterface;
Expand Down Expand Up @@ -58,9 +54,6 @@ public function init(AbstractKernel $kernel): void
'sequences' => [],
]
);

$this->addCommand(CleanCommand::class);
$this->addCommand(PublishCommand::class);
}

public function boot(TokenizerListenerRegistryInterface $listenerRegistry, CommandLocatorListener $listener): void
Expand Down

0 comments on commit 945429d

Please sign in to comment.