Skip to content

Commit

Permalink
Merge pull request #14 from weirdan/bump-deps
Browse files Browse the repository at this point in the history
Allow PHP 8 and xdebug-handler 2.0
  • Loading branch information
weirdan committed Apr 9, 2021
2 parents e7a6dcc + 7b1cf3d commit 524ca06
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
6 changes: 3 additions & 3 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",
"php": "~5.3 || ~7.0"
"composer/xdebug-handler": "^1.3 || ^2.0",
"php": "~5.3 || ~7.0 || ~8.0"
},
"require-dev": {
"phpunit/phpunit": "^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
"ext-xdebug": "*",
"php": "~5.6 || ~7.0",
"php": "~5.6 || ~7.0 || ~8.0",
"squizlabs/php_codesniffer": "^3.3",
"php-parallel-lint/php-parallel-lint": "^1.3"
},
Expand Down
1 change: 0 additions & 1 deletion src/Restarter.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

class Restarter extends XdebugHandler
{
/** @param string $command */
protected function restart($command)
{
assert(null !== $this->tmpIni);
Expand Down

0 comments on commit 524ca06

Please sign in to comment.