Skip to content
This repository was archived by the owner on Sep 22, 2024. It is now read-only.

Add support for Laravel 11 #5

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
],
"require": {
"php": "^7.2.5|^8.0",
"illuminate/console": "^8.0|^9.0|^10.0",
"illuminate/support": "^8.0|^9.0|^10.0"
"illuminate/console": "^8.0|^9.0|^10.0|^11.0",
"illuminate/support": "^8.0|^9.0|^10.0|^11.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0|^8.0|^9.0|^10.0",
"orchestra/testbench": "^6.0|^7.0|^8.0"
"phpunit/phpunit": "^7.0|^8.0|^9.0|^10.0|^11.0",
"orchestra/testbench": "^6.0|^7.0|^8.0|^9.0"
},
"autoload": {
"psr-4": {
Expand Down
4 changes: 2 additions & 2 deletions tests/SchedulingTasksTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ protected function mock($abstract, \Closure $mock = null)
return $this->instance($abstract, Mockery::mock(...array_filter(func_get_args())));
}

/** @test */
#[\PHPUnit\Framework\Attributes\Test]
public function it_skips_loading_excludes()
{
$app = $this->mockApp();
Expand All @@ -51,7 +51,7 @@ public function it_skips_loading_excludes()
(new TaskLoader($app))->loadFor($schedule, [BackupDaily::class]);
}

/** @test */
#[\PHPUnit\Framework\Attributes\Test]
public function it_invokes_a_found_task()
{
$app = $this->mockApp();
Expand Down
Loading