Skip to content

Commit

Permalink
Update test environment
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonFrings committed Aug 4, 2023
1 parent 3bde522 commit 72ba529
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
10 changes: 7 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,17 @@
"react/stream": "^1.2"
},
"require-dev": {
"phpunit/phpunit": "^9.3 || ^6.5",
"phpunit/phpunit": "^9.6 || ^6.5",
"react/event-loop": "^1.2"
},
"autoload": {
"psr-4": { "Clue\\React\\Zlib\\": "src/" }
"psr-4": {
"Clue\\React\\Zlib\\": "src/"
}
},
"autoload-dev": {
"psr-4": { "Clue\\Tests\\React\\Zlib\\": "tests/" }
"psr-4": {
"Clue\\Tests\\React\\Zlib\\": "tests/"
}
}
}
6 changes: 3 additions & 3 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>

<!-- PHPUnit configuration file with new format for PHPUnit 9.3+ -->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
<!-- PHPUnit configuration file with new format for PHPUnit 9.6+ -->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.6/phpunit.xsd"
bootstrap="vendor/autoload.php"
cacheResult="false"
colors="true"
Expand Down
2 changes: 1 addition & 1 deletion phpunit.xml.legacy
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>

<!-- PHPUnit configuration file with old format for PHPUnit 9.2 or older -->
<!-- PHPUnit configuration file with old format for legacy PHPUnit -->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/6.5/phpunit.xsd"
bootstrap="vendor/autoload.php"
Expand Down
2 changes: 0 additions & 2 deletions src/Compressor.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

namespace Clue\React\Zlib;

use Clue\StreamFilter as Filter;

/**
* The `Compressor` class can be used to compress a stream of data.
*
Expand Down
2 changes: 0 additions & 2 deletions src/Decompressor.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

namespace Clue\React\Zlib;

use Clue\StreamFilter as Filter;

/**
* The `Decompressor` class can be used to decompress a stream of data.
*
Expand Down
File renamed without changes.

0 comments on commit 72ba529

Please sign in to comment.