Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 307bc73

Browse filesBrowse files
committed
chore(deps): update Component dependencies
1 parent 858b432 commit 307bc73
Copy full SHA for 307bc73

File tree

Expand file treeCollapse file tree

9 files changed

+11
-11
lines changed
Filter options
Expand file treeCollapse file tree

9 files changed

+11
-11
lines changed

‎composer.json

Copy file name to clipboardExpand all lines: composer.json
+2-2Lines 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

Copy file name to clipboardExpand all lines: src/Components/Database/Installer.php
+1-1Lines 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

Copy file name to clipboardExpand all lines: src/Components/Http/Installer.php
+1-1Lines 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

Copy file name to clipboardExpand all lines: src/Components/Log/Installer.php
+1-1Lines 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

Copy file name to clipboardExpand all lines: src/Components/Queue/Installer.php
+2-2Lines 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

Copy file name to clipboardExpand all lines: src/Components/Redis/Installer.php
+1-1Lines 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

Copy file name to clipboardExpand all lines: src/Components/View/Installer.php
+1-1Lines 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

Copy file name to clipboardExpand all lines: tests/Components/LogInstallTest.php
+1-1Lines 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

Copy file name to clipboardExpand all lines: tests/Components/RedisInstallTest.php
+1-1Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.