Skip to content

Commit 0dfa84d

Browse files
Laravel 12.x Compatibility (#208)
* Bump dependencies for Laravel 12 * Update GitHub Actions for Laravel 12 * chore: drop unsupported framework and php versions --------- Co-authored-by: Joost de Bruijn <[email protected]>
1 parent 4276786 commit 0dfa84d

File tree

3 files changed

+16
-19
lines changed

3 files changed

+16
-19
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -11,23 +11,14 @@ jobs:
1111
strategy:
1212
fail-fast: true
1313
matrix:
14-
php: [8.3, 8.2, 8.1]
15-
laravel: [9.*, 10.*, 11.*]
14+
php: [8.4, 8.3, 8.2]
15+
laravel: ['11.*', '12.*']
1616
stability: [prefer-lowest, prefer-stable]
1717
include:
1818
- laravel: 11.*
1919
testbench: 9.*
20-
- laravel: 10.*
21-
testbench: 8.*
22-
- laravel: 9.*
23-
testbench: ^7.19
24-
exclude:
25-
# Laravel 11 doesn't support PHP 8.1
26-
- laravel: 11.*
27-
php: 8.1
28-
# Laravel 9 doesn't support PHP 8.3
29-
- laravel: 10.*
30-
php: 8.3
20+
- laravel: 12.*
21+
testbench: 10.*
3122

3223
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - ${{ matrix.stability }}
3324

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ tests/temp
44
composer.phar
55
composer.lock
66
.phpunit.result.cache
7+
.phpunit.cache

composer.json

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,23 @@
99
"email": "[email protected]",
1010
"homepage": "http://cretueusebiu.com",
1111
"role": "Developer"
12+
},
13+
{
14+
"name": "Joost de Bruijn",
15+
"email": "[email protected]",
16+
"role": "Maintainer"
1217
}
1318
],
1419
"require": {
15-
"php": "^8.1",
16-
"illuminate/notifications": "^9.0|^10.0|^11.0",
17-
"illuminate/support": "^9.0|^10.0|^11.0",
20+
"php": "^8.2",
21+
"illuminate/notifications": "^11.0|^12.0",
22+
"illuminate/support": "^11.0|^12.0",
1823
"minishlink/web-push": "^9.0"
1924
},
2025
"require-dev": {
21-
"mockery/mockery": "~1.0",
22-
"orchestra/testbench": "^7.0|^8.0|^9.0",
23-
"phpunit/phpunit": "^9.5|^10.5"
26+
"mockery/mockery": "^1.0",
27+
"orchestra/testbench": "^9.0|^10.0",
28+
"phpunit/phpunit": "^10.5|^11.5.3"
2429
},
2530
"autoload": {
2631
"psr-4": {

0 commit comments

Comments
 (0)