Skip to content

Commit

Permalink
Merge pull request #18 from weirdan/allow-xdebug-handler-3
Browse files Browse the repository at this point in the history
  • Loading branch information
weirdan committed May 30, 2022
2 parents c618925 + b2d3fbf commit bb9f798
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ jobs:
fail-fast: false
matrix:
php:
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
"performance"
],
"require": {
"composer/xdebug-handler": "^1.3 || ^2.0",
"php": "~5.3 || ~7.0 || ~8.0"
"composer/xdebug-handler": "^1.3 || ^2.0 || ^3.0",
"php": "~7.1 || ~8.0"
},
"require-dev": {
"phpunit/phpunit": "^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
"phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
"ext-xdebug": "*",
"php": "~5.6 || ~7.0 || ~8.0",
"php": "~7.1 || ~8.0",
"squizlabs/php_codesniffer": "^3.3",
"php-parallel-lint/php-parallel-lint": "^1.3"
},
Expand Down
2 changes: 1 addition & 1 deletion src/Restarter.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

class Restarter extends XdebugHandler
{
protected function restart($command)
protected function restart($command): void
{
assert(null !== $this->tmpIni);
$contents = file_get_contents($this->tmpIni);
Expand Down

0 comments on commit bb9f798

Please sign in to comment.