Skip to content

Commit e11f927

Browse files
committed
chore(deps): update Component dependencies
1 parent 7074091 commit e11f927

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@
3434
"illuminate/process": "^12.17",
3535
"illuminate/support": "^12.17",
3636
"illuminate/testing": "^12.17",
37-
"laravel-zero/foundation": "^12.17",
37+
"laravel-zero/foundation": "^12.17.1",
3838
"laravel/prompts": "^0.3.1",
3939
"league/flysystem": "^3.29.1",
40-
"nunomaduro/collision": "^8.5.0",
40+
"nunomaduro/collision": "^8.8",
4141
"nunomaduro/laravel-console-summary": "^1.12.1",
4242
"nunomaduro/laravel-console-task": "^1.9",
4343
"nunomaduro/laravel-desktop-notifier": "^2.8.1",

src/Components/Database/Installer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ final class Installer extends AbstractInstaller
4747
*/
4848
public function install(): void
4949
{
50-
$this->require('illuminate/database "^11.5"');
50+
$this->require('illuminate/database "^12.17"');
5151
$this->require('fakerphp/faker "^1.23"', true);
5252

5353
$this->task(

src/Components/Http/Installer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ final class Installer extends AbstractInstaller
3535
*/
3636
public function install(): void
3737
{
38-
$this->require('illuminate/http "^11.5"');
38+
$this->require('illuminate/http "^12.17"');
3939
}
4040
}

src/Components/Log/Installer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ final class Installer extends AbstractInstaller
4141
*/
4242
public function install(): void
4343
{
44-
$this->require('illuminate/log "^11.5"');
44+
$this->require('illuminate/log "^12.17"');
4545

4646
$this->task(
4747
'Creating default logging configuration',

src/Components/Queue/Installer.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ public function install(): void
4343
{
4444
$this->call('app:install', ['component' => 'database']);
4545

46-
$this->require('illuminate/bus "^11.5"');
47-
$this->require('illuminate/queue "^11.5"');
46+
$this->require('illuminate/bus "^12.17"');
47+
$this->require('illuminate/queue "^12.17"');
4848

4949
$this->task(
5050
'Creating default queue configuration',

src/Components/Redis/Installer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ final class Installer extends AbstractInstaller
2727
/** {@inheritdoc} */
2828
public function install(): void
2929
{
30-
$this->require('illuminate/redis "^11.5"');
30+
$this->require('illuminate/redis "^12.17"');
3131
}
3232
}

src/Components/View/Installer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ final class Installer extends AbstractInstaller
4141
*/
4242
public function install(): void
4343
{
44-
$this->require('illuminate/view "^11.5"');
44+
$this->require('illuminate/view "^12.17"');
4545

4646
$this->task(
4747
'Creating resources/views folder',

tests/Components/LogInstallTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
$composerMock->expects($this->once())
1717
->method('require')
18-
->with('illuminate/log "^11.5"');
18+
->with('illuminate/log "^12.17"');
1919

2020
$this->app->instance(ComposerContract::class, $composerMock);
2121

tests/Components/RedisInstallTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
$composerMock->expects($this->once())
1212
->method('require')
13-
->with('illuminate/redis "^11.5"', false);
13+
->with('illuminate/redis "^12.17"', false);
1414

1515
$this->app->instance(ComposerContract::class, $composerMock);
1616

0 commit comments

Comments
 (0)