Skip to content

Commit c40747a

Browse files
Merge pull request #22 from TheDragonCode/andrey-helldar-patch-1
Added Laravel 12 support
2 parents 30e2e64 + 0217620 commit c40747a

File tree

3 files changed

+22
-15
lines changed

3 files changed

+22
-15
lines changed

.github/workflows/phpunit.yml

+14-2
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,21 @@ jobs:
99
strategy:
1010
fail-fast: true
1111
matrix:
12-
php: [ "8.0", "8.1", "8.2", "8.3" ]
13-
laravel: [ "8.0", "9.0", "10.0", "11.0" ]
12+
php: [ "8.0", "8.1", "8.2", "8.3", "8.4" ]
13+
laravel: [ "8.0", "9.0", "10.0", "11.0", "12.0" ]
1414
exclude:
1515
- laravel: "8.0"
1616
php: "8.3"
1717

18+
- laravel: "8.0"
19+
php: "8.4"
20+
1821
- laravel: "9.0"
1922
php: "8.3"
2023

24+
- laravel: "9.0"
25+
php: "8.4"
26+
2127
- laravel: "10.0"
2228
php: "8.0"
2329

@@ -26,6 +32,12 @@ jobs:
2632

2733
- laravel: "11.0"
2834
php: "8.1"
35+
36+
- laravel: "12.0"
37+
php: "8.0"
38+
39+
- laravel: "12.0"
40+
php: "8.1"
2941

3042
name: PHP ${{ matrix.php }}, Laravel ${{ matrix.laravel }}
3143

composer.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -40,16 +40,16 @@
4040
"php": "^8.0",
4141
"doctrine/dbal": "^3.3",
4242
"dragon-code/support": "^5.8 || ^6.0",
43-
"illuminate/contracts": "^8.37 || ^9.0 || ^10.0 || ^11.0",
44-
"illuminate/database": "^8.37 || ^9.0 || ^10.0 || ^11.0",
45-
"illuminate/http": "^8.37 || ^9.0 || ^10.0 || ^11.0",
46-
"illuminate/routing": "^8.37 || ^9.0 || ^10.0 || ^11.0",
47-
"illuminate/support": "^8.37 || ^9.0 || ^10.0 || ^11.0"
43+
"illuminate/contracts": "^8.37 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
44+
"illuminate/database": "^8.37 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
45+
"illuminate/http": "^8.37 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
46+
"illuminate/routing": "^8.37 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
47+
"illuminate/support": "^8.37 || ^9.0 || ^10.0 || ^11.0 || ^12.0"
4848
},
4949
"require-dev": {
5050
"mockery/mockery": "^1.5",
51-
"orchestra/testbench": "^6.0 || ^7.0 || ^8.0 || ^9.0",
52-
"phpunit/phpunit": "^9.6 || ^10.0"
51+
"orchestra/testbench": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
52+
"phpunit/phpunit": "^9.6 || ^10.0 || ^11.0 || ^12.0"
5353
},
5454
"minimum-stability": "stable",
5555
"prefer-stable": true,
@@ -81,4 +81,4 @@
8181
]
8282
}
8383
}
84-
}
84+
}

phpunit.xml

-5
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,6 @@
1818
<include>
1919
<directory suffix=".php">./src</directory>
2020
</include>
21-
<report>
22-
<clover outputFile="build/logs/clover.xml" />
23-
<html outputDirectory="build/logs/coverage" />
24-
<text outputFile="build/logs/coverage.txt" />
25-
</report>
2621
</coverage>
2722
<php>
2823
<env name="APP_KEY" value="AckfSECXIvnK5r28GVIWUAxmbBSjTsmF" />

0 commit comments

Comments
 (0)