We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a598769 commit a45a878Copy full SHA for a45a878
.github/workflows/ci.yml
@@ -10,6 +10,7 @@ jobs:
10
strategy:
11
matrix:
12
php:
13
+ - 8.1
14
- 8.0
15
- 7.4
16
- 7.3
phpunit.xml.dist
@@ -4,8 +4,9 @@
4
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
6
bootstrap="vendor/autoload.php"
7
+ cacheResult="false"
8
colors="true"
- cacheResult="false">
9
+ convertDeprecationsToExceptions="true">
<testsuites>
<testsuite name="Connection-Manager-Extra Test Suite">
<directory>./tests/</directory>
@@ -16,4 +17,7 @@
17
<directory>./src/</directory>
18
</include>
19
</coverage>
20
+ <php>
21
+ <ini name="error_reporting" value="-1" />
22
+ </php>
23
</phpunit>
0 commit comments