Skip to content

Commit 1d62db8

Browse files
Laravel 12.x Compatibility (#42)
* Bump dependencies for Laravel 12 * Update GitHub Actions for Laravel 12
1 parent 2eae180 commit 1d62db8

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

.github/workflows/run-tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,15 @@ jobs:
1212
fail-fast: true
1313
matrix:
1414
php: [8.4, 8.3, 8.2]
15-
laravel: ["10.*", "11.*"]
15+
laravel: ['10.*', '11.*', '12.*']
1616
dependency-version: [prefer-lowest, prefer-stable]
1717
include:
1818
- laravel: 10.*
1919
testbench: 8.*
2020
- laravel: 11.*
2121
testbench: 9.*
22+
- laravel: 12.*
23+
testbench: 10.*
2224

2325
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
2426

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@
2121
"ext-openssl": "*",
2222
"egulias/email-validator": "^3.1 || ^4.0",
2323
"guzzlehttp/guzzle": "^7.2",
24-
"illuminate/support": "^10.0 || ^11.0",
25-
"illuminate/validation": "^10.0 || ^11.0"
24+
"illuminate/support": "^10.0 || ^11.0 || ^12.0",
25+
"illuminate/validation": "^10.0 || ^11.0 || ^12.0"
2626
},
2727
"require-dev": {
28-
"orchestra/testbench": "^8.0 || ^9.0",
29-
"phpunit/phpunit": "^10.4"
28+
"orchestra/testbench": "^8.0 || ^9.0 || ^10.0",
29+
"phpunit/phpunit": "^10.4 || ^11.5.3"
3030
},
3131
"autoload": {
3232
"psr-4": {
@@ -57,4 +57,4 @@
5757
}
5858
}
5959
}
60-
}
60+
}

0 commit comments

Comments
 (0)