Skip to content

Commit

Permalink
[1.x] Make commands lazy (#341)
Browse files Browse the repository at this point in the history
* Fix soft dependency

* Fix alias
  • Loading branch information
timacdonald authored Mar 19, 2024
1 parent c47aa15 commit 95ccbaa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
"illuminate/support": "^10.34|^11.0",
"illuminate/view": "^10.34|^11.0",
"livewire/livewire": "^3.2",
"symfony/console": "^6.0|^7.0",
"nesbot/carbon": "^2.67|^3.0"
},
"require-dev": {
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/ClearCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
/**
* @internal
*/
#[AsCommand(name: 'pulse:clear')]
#[AsCommand(name: 'pulse:clear', aliases: ['pulse:purge'])]
class ClearCommand extends Command
{
use ConfirmableTrait;
Expand Down

0 comments on commit 95ccbaa

Please sign in to comment.