Skip to content

Commit 4d59cac

Browse files
Merge pull request #16 from Laravel-Lang/andrey-helldar-patch-1
Added Laravel 12 support
2 parents 4900a46 + 744fff8 commit 4d59cac

File tree

3 files changed

+8
-11
lines changed

3 files changed

+8
-11
lines changed

.github/workflows/tests.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,13 @@ jobs:
1111
strategy:
1212
fail-fast: true
1313
matrix:
14-
php: [ "8.1", "8.2", "8.3" ]
15-
laravel: [ "10.0", "11.0" ]
14+
php: [ "8.1", "8.2", "8.3", "8.4" ]
15+
laravel: [ "10.0", "11.0", "12.0" ]
1616
exclude:
1717
- laravel: "11.0"
1818
php: "8.1"
19+
- laravel: "12.0"
20+
php: "8.1"
1921

2022
name: PHP ${{ matrix.php }}, Laravel ${{ matrix.laravel }}
2123

composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@
1616
],
1717
"require": {
1818
"php": "^8.1",
19-
"illuminate/support": "^10.0 || ^11.0",
20-
"illuminate/translation": "^10.0 || ^11.0"
19+
"illuminate/support": "^10.0 || ^11.0 || ^12.0",
20+
"illuminate/translation": "^10.0 || ^11.0 || ^12.0"
2121
},
2222
"require-dev": {
23-
"orchestra/testbench": "^8.0 || ^9.0",
24-
"phpunit/phpunit": "^10.0"
23+
"orchestra/testbench": "^8.0 || ^9.0 || ^10.0",
24+
"phpunit/phpunit": "^10.0 || ^11.0 || ^12.0"
2525
},
2626
"minimum-stability": "stable",
2727
"autoload": {

phpunit.xml

-5
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,6 @@
3636
<file>src/ServiceProvider.php</file>
3737
<directory suffix=".php">src/Facades</directory>
3838
</exclude>
39-
<report>
40-
<clover outputFile="build/logs/clover.xml"/>
41-
<html outputDirectory="build/logs/coverage"/>
42-
<text outputFile="build/logs/coverage.txt"/>
43-
</report>
4439
</coverage>
4540
<php>
4641
<env name="APP_KEY" value="AckfSECXIvnK5r28GVIWUAxmbBSjTsmF"/>

0 commit comments

Comments
 (0)