Skip to content

Commit

Permalink
Support Laravel 11
Browse files Browse the repository at this point in the history
  • Loading branch information
staudenmeir committed Feb 17, 2024
1 parent 8647a21 commit b637ea8
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"illuminate/database": "^11.0"
},
"require-dev": {
"barryvdh/laravel-ide-helper": "^3.0",
"orchestra/testbench": "^9.0",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.5"
Expand Down
2 changes: 0 additions & 2 deletions tests/IdeHelper/BelongsToThroughRelationsHookTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ protected function setUp(): void
{
parent::setUp();

$this->markTestSkipped(); // TODO[L11]

$db = new DB();
$db->addConnection([
'driver' => 'sqlite',
Expand Down
4 changes: 1 addition & 3 deletions tests/IdeHelperServiceProviderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ class IdeHelperServiceProviderTest extends TestCase
{
public function testAutoRegistrationOfModelHook(): void
{
$this->markTestSkipped(); // TODO[L11]

$this->app->loadDeferredProvider(BarryvdhIdeHelperServiceProvider::class);
$this->app->loadDeferredProvider(IdeHelperServiceProvider::class);

Expand All @@ -28,7 +26,7 @@ public function testAutoRegistrationOfModelHook(): void
protected function getPackageProviders($app): array
{
return [
// TODO[L11] BarryvdhIdeHelperServiceProvider::class,
BarryvdhIdeHelperServiceProvider::class,
IdeHelperServiceProvider::class,
];
}
Expand Down

0 comments on commit b637ea8

Please sign in to comment.