Skip to content

Commit 3012b23

Browse files
committed
feat: Update Laravel framework version in composer.json
The Laravel framework version in the composer.json file needed to be updated from "^10|^11" to "^11|^12" to ensure compatibility with the latest features and enhancements. This change aligns with the project's requirements for PHP version 8.2. 🚀
1 parent 0010cad commit 3012b23

File tree

3 files changed

+1281
-1779
lines changed

3 files changed

+1281
-1779
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
php: ['8.2', '8.3']
15-
laravel: ['10', '11']
15+
laravel: ['11', '12']
1616

1717
steps:
1818
- name: Checkout Code

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919
],
2020
"require": {
2121
"php": "^8.2",
22-
"laravel/framework": "^10|^11",
22+
"laravel/framework": "^11|^12",
2323
"vaened/support": "^4.0"
2424
},
2525
"require-dev": {
26-
"phpunit/phpunit": "^10",
27-
"orchestra/testbench": "^8|^9"
26+
"phpunit/phpunit": "^11",
27+
"orchestra/testbench": "^9|^10"
2828
},
2929
"extra": {
3030
"laravel": {

0 commit comments

Comments
 (0)