Skip to content

Commit 7b743f2

Browse files
authored
Laravel v12 support (#261)
1 parent e39d9af commit 7b743f2

File tree

4 files changed

+15
-9
lines changed

4 files changed

+15
-9
lines changed

.github/workflows/tests.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,20 +17,26 @@ jobs:
1717
fail-fast: true
1818
matrix:
1919
php: [7.4, '8.0', 8.1, 8.2, 8.3, 8.4]
20-
laravel: [8, 9, 10, 11]
20+
laravel: [8, 9, 10, 11, 12]
2121
exclude:
2222
- php: 7.4
2323
laravel: 9
2424
- php: 7.4
2525
laravel: 10
2626
- php: 7.4
2727
laravel: 11
28+
- php: 7.4
29+
laravel: 12
2830
- php: '8.0'
2931
laravel: 10
3032
- php: '8.0'
31-
laravel: 11
33+
laravel: 11
34+
- php: '8.0'
35+
laravel: 12
3236
- php: 8.1
3337
laravel: 11
38+
- php: 8.1
39+
laravel: 12
3440
- php: 8.2
3541
laravel: 8
3642
- php: 8.3

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,16 @@
2626
],
2727
"require": {
2828
"php": "^7.4|^8.0",
29-
"illuminate/contracts": "^8.0|^9.0|^10.0|^11.0",
30-
"illuminate/filesystem": "^8.0|^9.0|^10.0|^11.0",
31-
"illuminate/support": "^8.0|^9.0|^10.0|^11.0",
32-
"illuminate/view": "^8.0|^9.0|^10.0|^11.0",
29+
"illuminate/contracts": "^8.0|^9.0|^10.0|^11.0|^12.0",
30+
"illuminate/filesystem": "^8.0|^9.0|^10.0|^11.0|^12.0",
31+
"illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0",
32+
"illuminate/view": "^8.0|^9.0|^10.0|^11.0|^12.0",
3333
"symfony/console": "^5.3|^6.0|^7.0",
3434
"symfony/finder": "^5.3|^6.0|^7.0"
3535
},
3636
"require-dev": {
3737
"mockery/mockery": "^1.5.1",
38-
"orchestra/testbench": "^6.0|^7.0|^8.0|^9.0",
38+
"orchestra/testbench": "^6.0|^7.0|^8.0|^9.0|^10.0",
3939
"phpunit/phpunit": "^9.0|^10.5|^11.0"
4040
},
4141
"bin": [

tests/FactoryTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
class FactoryTest extends TestCase
1515
{
16-
public function tearDown(): void
16+
protected function tearDown(): void
1717
{
1818
parent::tearDown();
1919

tests/IconsManifestTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ protected function setUp(): void
2020
@unlink($this->manifestPath);
2121
}
2222

23-
public function tearDown(): void
23+
protected function tearDown(): void
2424
{
2525
parent::tearDown();
2626

0 commit comments

Comments
 (0)