We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 597865f + 6274019 commit 5edd215Copy full SHA for 5edd215
.github/workflows/tests.yml
@@ -12,7 +12,10 @@ jobs:
12
fail-fast: true
13
matrix:
14
php: [ "8.1", "8.2", "8.3" ]
15
- laravel: [ "10.0" ]
+ laravel: [ "10.0", "11.0" ]
16
+ exclude:
17
+ - laravel: "11.0"
18
+ php: "8.1"
19
20
name: PHP ${{ matrix.php }}, Laravel ${{ matrix.laravel }}
21
phpunit.xml
@@ -21,8 +21,8 @@
bootstrap="vendor/autoload.php"
22
colors="true"
23
convertErrorsToExceptions="true"
24
- convertNoticesToExceptions="true"
25
- convertWarningsToExceptions="true"
+ convertNoticesToExceptions="false"
+ convertWarningsToExceptions="false"
26
processIsolation="false"
27
stopOnError="false"
28
stopOnFailure="false"
0 commit comments