From 36f9743ac07ce8f06f4b2c2d79043012c4147a0d Mon Sep 17 00:00:00 2001 From: Jason Varga Date: Mon, 19 Aug 2024 14:54:38 -0400 Subject: [PATCH] require ray in dev --- composer.json | 3 ++- tests/TestCase.php | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index dda45f8fcfb..9255f69b7ef 100644 --- a/composer.json +++ b/composer.json @@ -42,7 +42,8 @@ "laravel/pint": "1.16.0", "mockery/mockery": "^1.3.3", "orchestra/testbench": "^8.14 || ^9.0", - "phpunit/phpunit": "^10.0" + "phpunit/phpunit": "^10.0", + "spatie/laravel-ray": "^1.37" }, "config": { "optimize-autoloader": true, diff --git a/tests/TestCase.php b/tests/TestCase.php index fe830c3212e..b2367916238 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -73,6 +73,7 @@ protected function getPackageProviders($app) \Rebing\GraphQL\GraphQLServiceProvider::class, \Wilderborn\Partyline\ServiceProvider::class, \Archetype\ServiceProvider::class, + \Spatie\LaravelRay\RayServiceProvider::class, ]; }