Skip to content

Commit 8bffe62

Browse files
authored
Merge pull request #38 from SimonFrings/test_suite
Update test environment
2 parents 3bde522 + 72ba529 commit 8bffe62

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

composer.json

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,17 @@
1616
"react/stream": "^1.2"
1717
},
1818
"require-dev": {
19-
"phpunit/phpunit": "^9.3 || ^6.5",
19+
"phpunit/phpunit": "^9.6 || ^6.5",
2020
"react/event-loop": "^1.2"
2121
},
2222
"autoload": {
23-
"psr-4": { "Clue\\React\\Zlib\\": "src/" }
23+
"psr-4": {
24+
"Clue\\React\\Zlib\\": "src/"
25+
}
2426
},
2527
"autoload-dev": {
26-
"psr-4": { "Clue\\Tests\\React\\Zlib\\": "tests/" }
28+
"psr-4": {
29+
"Clue\\Tests\\React\\Zlib\\": "tests/"
30+
}
2731
}
2832
}

phpunit.xml.dist

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22

3-
<!-- PHPUnit configuration file with new format for PHPUnit 9.3+ -->
4-
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5-
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
3+
<!-- PHPUnit configuration file with new format for PHPUnit 9.6+ -->
4+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.6/phpunit.xsd"
66
bootstrap="vendor/autoload.php"
77
cacheResult="false"
88
colors="true"

phpunit.xml.legacy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22

3-
<!-- PHPUnit configuration file with old format for PHPUnit 9.2 or older -->
3+
<!-- PHPUnit configuration file with old format for legacy PHPUnit -->
44
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
55
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/6.5/phpunit.xsd"
66
bootstrap="vendor/autoload.php"

src/Compressor.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
namespace Clue\React\Zlib;
44

5-
use Clue\StreamFilter as Filter;
6-
75
/**
86
* The `Compressor` class can be used to compress a stream of data.
97
*

src/Decompressor.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
namespace Clue\React\Zlib;
44

5-
use Clue\StreamFilter as Filter;
6-
75
/**
86
* The `Decompressor` class can be used to decompress a stream of data.
97
*
File renamed without changes.

0 commit comments

Comments
 (0)