Skip to content

Commit f19fbef

Browse files
authored
chore: support Laravel 13 and drop support for PHP 8.1 (#48)
* Laravel 13 dependencies * Removed 8.1, added 8.5 * Moved to PHP 8.2
1 parent c84322f commit f19fbef

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
php: [8.1, 8.2, 8.3, 8.4]
12+
php: [8.2, 8.3, 8.4, 8.5]
1313
max-parallel: 4
1414

1515
name: Tests PHP${{ matrix.php }}

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,17 @@
2626
}
2727
],
2828
"require": {
29-
"php": "^8.1",
30-
"laravel/framework": "^9.46 || ^10.34 || ^11.29 || ^12.0",
29+
"php": "^8.2",
30+
"laravel/framework": "^9.46 || ^10.34 || ^11.29 || ^12.0 || ^13.0",
3131
"php-mcp/server": "^3.3"
3232
},
3333
"require-dev": {
3434
"laravel/pint": "^1.13",
3535
"mockery/mockery": "^1.6",
36-
"orchestra/pest-plugin-testbench": "^2.1",
37-
"orchestra/testbench": "^8.0 || ^9.0",
38-
"pestphp/pest": "^2.0",
39-
"pestphp/pest-plugin-laravel": "^2.0",
36+
"orchestra/pest-plugin-testbench": "^2.1 || ^4.0",
37+
"orchestra/testbench": "^8.0 || ^9.0 || ^11.0",
38+
"pestphp/pest": "^2.0 || ^4.0",
39+
"pestphp/pest-plugin-laravel": "^2.0 || ^4.0",
4040
"phpunit/phpunit": "^10.0 || ^11.0 || ^12.0"
4141
},
4242
"autoload": {
@@ -69,4 +69,4 @@
6969
},
7070
"minimum-stability": "dev",
7171
"prefer-stable": true
72-
}
72+
}

0 commit comments

Comments
 (0)