Skip to content

Commit 09a287f

Browse files
committed
chore(deps): update Component dependencies
1 parent b8feb58 commit 09a287f

8 files changed

Lines changed: 9 additions & 9 deletions

File tree

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 "^12.17"');
50+
$this->require('illuminate/database "^13.0"');
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 "^12.17"');
38+
$this->require('illuminate/http "^13.0"');
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 "^12.17"');
44+
$this->require('illuminate/log "^13.0"');
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 "^12.17"');
47-
$this->require('illuminate/queue "^12.17"');
46+
$this->require('illuminate/bus "^13.0"');
47+
$this->require('illuminate/queue "^13.0"');
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 "^12.17"');
30+
$this->require('illuminate/redis "^13.0"');
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 "^12.17"');
44+
$this->require('illuminate/view "^13.0"');
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 "^12.17"');
18+
->with('illuminate/log "^13.0"');
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 "^12.17"', false);
13+
->with('illuminate/redis "^13.0"', false);
1414

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

0 commit comments

Comments
 (0)