Skip to content

Commit bb9f798

Browse files
authored
Merge pull request #18 from weirdan/allow-xdebug-handler-3
2 parents c618925 + b2d3fbf commit bb9f798

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ jobs:
1111
fail-fast: false
1212
matrix:
1313
php:
14-
- 5.6
15-
- 7.0
1614
- 7.1
1715
- 7.2
1816
- 7.3

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
"performance"
88
],
99
"require": {
10-
"composer/xdebug-handler": "^1.3 || ^2.0",
11-
"php": "~5.3 || ~7.0 || ~8.0"
10+
"composer/xdebug-handler": "^1.3 || ^2.0 || ^3.0",
11+
"php": "~7.1 || ~8.0"
1212
},
1313
"require-dev": {
14-
"phpunit/phpunit": "^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
14+
"phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
1515
"ext-xdebug": "*",
16-
"php": "~5.6 || ~7.0 || ~8.0",
16+
"php": "~7.1 || ~8.0",
1717
"squizlabs/php_codesniffer": "^3.3",
1818
"php-parallel-lint/php-parallel-lint": "^1.3"
1919
},

src/Restarter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
class Restarter extends XdebugHandler
88
{
9-
protected function restart($command)
9+
protected function restart($command): void
1010
{
1111
assert(null !== $this->tmpIni);
1212
$contents = file_get_contents($this->tmpIni);

0 commit comments

Comments
 (0)