Skip to content

Commit 95ccbaa

Browse files
authored
[1.x] Make commands lazy (#341)
* Fix soft dependency * Fix alias
1 parent c47aa15 commit 95ccbaa

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

composer.json

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
"illuminate/support": "^10.34|^11.0",
3333
"illuminate/view": "^10.34|^11.0",
3434
"livewire/livewire": "^3.2",
35+
"symfony/console": "^6.0|^7.0",
3536
"nesbot/carbon": "^2.67|^3.0"
3637
},
3738
"require-dev": {

src/Commands/ClearCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
/**
1111
* @internal
1212
*/
13-
#[AsCommand(name: 'pulse:clear')]
13+
#[AsCommand(name: 'pulse:clear', aliases: ['pulse:purge'])]
1414
class ClearCommand extends Command
1515
{
1616
use ConfirmableTrait;

0 commit comments

Comments
 (0)