Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): drop Laravel 10 support #17

Merged
merged 1 commit into from
Feb 26, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 2 additions & 9 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.*
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
1 change: 0 additions & 1 deletion tests/Integration/Facades/VueTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ class VueTest extends TestCase
{
/**
* @return void
* @test
*/
public function testFacadeRoot(): void
{
Expand Down
1 change: 0 additions & 1 deletion tests/Integration/ViewDirectiveTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ class ViewDirectiveTest extends TestCase
{
/**
* @return void
* @test
*/
public function testVueDirective(): void
{
Expand Down
3 changes: 0 additions & 3 deletions tests/Integration/ViewVariablesTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ class ViewVariablesTest extends TestCase
{
/**
* @return void
* @test
*/
public function testEmptyVariables(): void
{
Expand All @@ -19,7 +18,6 @@ public function testEmptyVariables(): void

/**
* @return void
* @test
*/
public function testVariablesAreDefined(): void
{
Expand All @@ -35,7 +33,6 @@ public function testVariablesAreDefined(): void

/**
* @return void
* @test
*/
public function testVariablesWithNonce(): void
{
Expand Down
2 changes: 0 additions & 2 deletions tests/Integration/VueCollectionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ class VueCollectionTest extends TestCase
{
/**
* @return void
* @test
*/
public function testVueIsACollection(): void
{
Expand All @@ -19,7 +18,6 @@ public function testVueIsACollection(): void

/**
* @return void
* @test
*/
public function testVueIsASingleton(): void
{
Expand Down