We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3978933 commit 8118b3aCopy full SHA for 8118b3a
1 file changed
castor.php
@@ -89,6 +89,18 @@ function install(): void
89
qa\install();
90
}
91
92
+#[AsTask(description: 'Update dependencies')]
93
+function update(bool $withTools = false): void
94
+{
95
+ io()->title('Updating dependencies...');
96
+
97
+ // docker_compose_run('composer update -o');
98
99
+ if ($withTools) {
100
+ qa\update();
101
+ }
102
+}
103
104
#[AsTask(description: 'Clears the application cache', namespace: 'app', aliases: ['cache-clear'])]
105
function cache_clear(bool $warm = true): void
106
{
0 commit comments