From 2d4592d1123cb14e20ce0a0844884d59939d41d7 Mon Sep 17 00:00:00 2001 From: Mior Muhammad Zaki Date: Mon, 23 Sep 2024 12:45:33 +0800 Subject: [PATCH] wip Signed-off-by: Mior Muhammad Zaki --- composer.json | 10 +++++----- tests/Feature/Console/JobMakeCommandTest.php | 3 --- workbench/tests/JobMakeCommandTest.php | 3 --- 3 files changed, 5 insertions(+), 11 deletions(-) diff --git a/composer.json b/composer.json index 688979d..a80bfc1 100644 --- a/composer.json +++ b/composer.json @@ -31,17 +31,17 @@ "php": "^8.2", "composer-runtime-api": "^2.2", "composer/semver": "^3.0", - "illuminate/console": "^11.22", - "illuminate/database": "^11.22", - "illuminate/filesystem": "^11.22", - "illuminate/support": "^11.22", + "illuminate/console": "^11.24", + "illuminate/database": "^11.24", + "illuminate/filesystem": "^11.24", + "illuminate/support": "^11.24", "orchestra/canvas-core": "^9.0", "orchestra/testbench-core": "^9.2", "symfony/polyfill-php83": "^1.28", "symfony/yaml": "^7.0" }, "require-dev": { - "laravel/framework": "^11.22", + "laravel/framework": "^11.24", "laravel/pint": "^1.17", "mockery/mockery": "^1.6", "phpstan/phpstan": "^1.11", diff --git a/tests/Feature/Console/JobMakeCommandTest.php b/tests/Feature/Console/JobMakeCommandTest.php index 8f16738..af7ea3d 100644 --- a/tests/Feature/Console/JobMakeCommandTest.php +++ b/tests/Feature/Console/JobMakeCommandTest.php @@ -21,10 +21,7 @@ public function it_can_generate_job_file() $this->assertFileContains([ 'namespace App\Jobs;', 'use Illuminate\Contracts\Queue\ShouldQueue;', - 'use Illuminate\Foundation\Bus\Dispatchable;', 'use Illuminate\Foundation\Queue\Queueable;', - 'use Illuminate\Queue\InteractsWithQueue;', - 'use Illuminate\Queue\SerializesModels;', 'class FooCreated implements ShouldQueue', ' use Queueable;', ], 'app/Jobs/FooCreated.php'); diff --git a/workbench/tests/JobMakeCommandTest.php b/workbench/tests/JobMakeCommandTest.php index b1566c7..fc7b42a 100644 --- a/workbench/tests/JobMakeCommandTest.php +++ b/workbench/tests/JobMakeCommandTest.php @@ -17,10 +17,7 @@ public function testItCanGenerateJobFile() $this->assertFileContains([ 'namespace App\Jobs;', 'use Illuminate\Contracts\Queue\ShouldQueue;', - 'use Illuminate\Foundation\Bus\Dispatchable;', 'use Illuminate\Foundation\Queue\Queueable;', - 'use Illuminate\Queue\InteractsWithQueue;', - 'use Illuminate\Queue\SerializesModels;', 'class FooCreated implements ShouldQueue', 'use Queueable;', ], 'app/Jobs/FooCreated.php');