Skip to content

Commit a4065e2

Browse files
committed
who knows
1 parent 6612eff commit a4065e2

File tree

2 files changed

+20
-11
lines changed

2 files changed

+20
-11
lines changed

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"require": {
1212
"php": "^8.0",
1313
"ext-json": "*",
14-
"illuminate/queue": "^9.0|^10.0|^11.0",
14+
"illuminate/queue": "^10.0|^11.0",
1515
"php-amqplib/php-amqplib": "^v3.6"
1616
},
1717
"require-dev": {

phpunit.xml.dist

+19-10
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,29 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" beStrictAboutTestsThatDoNotTestAnything="false" bootstrap="vendor/autoload.php" colors="true" processIsolation="false" stopOnError="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.0/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
3-
<coverage>
4-
<report>
5-
<html outputDirectory="build/coverage"/>
6-
</report>
7-
</coverage>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
backupGlobals="false"
4+
beStrictAboutTestsThatDoNotTestAnything="false"
5+
bootstrap="vendor/autoload.php"
6+
colors="true"
7+
processIsolation="false"
8+
stopOnError="false"
9+
stopOnFailure="false"
10+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.0/phpunit.xsd"
11+
cacheDirectory=".phpunit.cache"
12+
backupStaticProperties="false">
813
<testsuites>
914
<testsuite name="Package Test Suite">
1015
<directory suffix=".php">./tests/</directory>
1116
</testsuite>
1217
</testsuites>
1318
<php>
14-
<env name="HOST" value="127.0.0.1"/>
15-
<env name="PORT" value="5672"/>
16-
<env name="PORT_SSL" value="5671"/>
17-
<env name="RABBITMQ_SSL_CAFILE" value="./tests/files/rootCA.pem"/>
19+
<env name="HOST"
20+
value="127.0.0.1"/>
21+
<env name="PORT"
22+
value="5672"/>
23+
<env name="PORT_SSL"
24+
value="5671"/>
25+
<env name="RABBITMQ_SSL_CAFILE"
26+
value="./tests/files/rootCA.pem"/>
1827
</php>
1928
<logging/>
2029
<source>

0 commit comments

Comments
 (0)