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 ba2d67c commit a9f499cCopy full SHA for a9f499c
.github/workflows/ci.yml
@@ -11,6 +11,7 @@ jobs:
11
strategy:
12
matrix:
13
php:
14
+ - 8.1
15
- 8.0
16
- 7.4
17
- 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">
10
<testsuites>
<testsuite name="Http Proxy Test Suite">
<directory>./tests/</directory>
@@ -16,4 +17,7 @@
<directory>./src/</directory>
18
</include>
19
</coverage>
20
+ <php>
21
+ <ini name="error_reporting" value="-1" />
22
+ </php>
23
</phpunit>
0 commit comments