diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3f144f0..463805a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,17 +9,10 @@ jobs: strategy: fail-fast: true matrix: - php: [8.1, 8.2, 8.3] - laravel: [10.*, 11.*, 12.*] + php: [8.2, 8.3] + laravel: [11.*, 12.*] dependency-version: [prefer-lowest, prefer-stable] - exclude: - - php: 8.1 - laravel: 11.* - - php: 8.1 - laravel: 12.* include: - - laravel: 10.* - testbench: 8.* - laravel: 11.* testbench: 9.* - laravel: 12.* diff --git a/composer.json b/composer.json index d8acbd9..13c6a00 100644 --- a/composer.json +++ b/composer.json @@ -16,15 +16,15 @@ } ], "require": { - "php": "^8.1", - "illuminate/support": "^10.0|^11.0|^12.0" + "php": "^8.2", + "illuminate/support": "^11.0|^12.0" }, "require-dev": { "exolnet/phpcs-config": "^2.0", "laravel/pint": "^1.2", "mockery/mockery": "^1.4", "orchestra/testbench": "^8.0|^9.0|^10.0", - "phpunit/phpunit": "^10.5|^11.5.3", + "phpunit/phpunit": "^11.5.3", "squizlabs/php_codesniffer": "^3.6" }, "autoload": { diff --git a/tests/Integration/Facades/VueTest.php b/tests/Integration/Facades/VueTest.php index f7b56e4..e2e1ffc 100644 --- a/tests/Integration/Facades/VueTest.php +++ b/tests/Integration/Facades/VueTest.php @@ -9,7 +9,6 @@ class VueTest extends TestCase { /** * @return void - * @test */ public function testFacadeRoot(): void { diff --git a/tests/Integration/ViewDirectiveTest.php b/tests/Integration/ViewDirectiveTest.php index 1778cd4..4ec3054 100644 --- a/tests/Integration/ViewDirectiveTest.php +++ b/tests/Integration/ViewDirectiveTest.php @@ -9,7 +9,6 @@ class ViewDirectiveTest extends TestCase { /** * @return void - * @test */ public function testVueDirective(): void { diff --git a/tests/Integration/ViewVariablesTest.php b/tests/Integration/ViewVariablesTest.php index af2c61f..d2b18ea 100644 --- a/tests/Integration/ViewVariablesTest.php +++ b/tests/Integration/ViewVariablesTest.php @@ -8,7 +8,6 @@ class ViewVariablesTest extends TestCase { /** * @return void - * @test */ public function testEmptyVariables(): void { @@ -19,7 +18,6 @@ public function testEmptyVariables(): void /** * @return void - * @test */ public function testVariablesAreDefined(): void { @@ -35,7 +33,6 @@ public function testVariablesAreDefined(): void /** * @return void - * @test */ public function testVariablesWithNonce(): void { diff --git a/tests/Integration/VueCollectionTest.php b/tests/Integration/VueCollectionTest.php index 84cc3d7..7fba304 100644 --- a/tests/Integration/VueCollectionTest.php +++ b/tests/Integration/VueCollectionTest.php @@ -8,7 +8,6 @@ class VueCollectionTest extends TestCase { /** * @return void - * @test */ public function testVueIsACollection(): void { @@ -19,7 +18,6 @@ public function testVueIsACollection(): void /** * @return void - * @test */ public function testVueIsASingleton(): void {