Skip to content

Commit

Permalink
Merge pull request #14 from zaengle/laravel-11
Browse files Browse the repository at this point in the history
Laravel 11
  • Loading branch information
jesseschutt authored Mar 18, 2024
2 parents 9369e6d + 12ae35d commit 0fe6bff
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
}
],
"require": {
"php": "^8.1",
"illuminate/support": "8.*|9.*|10.*",
"illuminate/console": "8.*|9.*|10.*"
"php": "^8.1|^8.2|^8.3",
"illuminate/support": "8.*|9.*|10.*|11.*",
"illuminate/console": "8.*|9.*|10.*|11.*"
},
"require-dev": {
"mockery/mockery": ">=0.9.9",
Expand Down
14 changes: 7 additions & 7 deletions tests/PipelineTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ public function it_uses_db_transactions_on_a_successful_run()
->once();

app(Pipeline::class)->pipe(
new TestTraveler(),
[TestPipe::class],
true
);
new TestTraveler(),
[TestPipe::class],
true
);
}

/** @test */
Expand All @@ -67,9 +67,9 @@ public function it_uses_db_transactions_on_a_failed_run()
->once();

app(Pipeline::class)->pipe(
new TestTraveler(),
[FailedTestPipe::class],
true
new TestTraveler(),
[FailedTestPipe::class],
true
);
}

Expand Down

0 comments on commit 0fe6bff

Please sign in to comment.