diff --git a/.travis.yml b/.travis.yml index 7311d7c..d4161c0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,6 @@ language: php php: - - 7.0 - 7.1 - 7.2 - 7.3 diff --git a/CHANGELOG.md b/CHANGELOG.md index 003fbb8..262c9ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,9 +2,10 @@ All notable changes to `phpunit-watcher` will be documented in this file -## 1.9.1 - 2019-03-25 +## 1.10.0 - 2019-07-19 - fix for deprecated symfony/process string construction +- removed support for PHP 7.0 ## 1.9.0 - 2019-03-25 diff --git a/composer.json b/composer.json index f5ef551..9de071c 100644 --- a/composer.json +++ b/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.0", + "php": "^7.1", "clue/stdio-react": "^2.0", "jolicode/jolinotif": "^2.0", "symfony/console": "^3.0|^4.0", diff --git a/src/Screens/Phpunit.php b/src/Screens/Phpunit.php index 9f75e34..5809c36 100644 --- a/src/Screens/Phpunit.php +++ b/src/Screens/Phpunit.php @@ -47,7 +47,7 @@ public function registerListeners() case 'a': $this->options['phpunit']['arguments'] = ''; - $this->terminal->displayScreen(new Phpunit($this->options)); + $this->terminal->displayScreen(new self($this->options)); break; case 'g': $this->terminal->displayScreen(new FilterGroupName()); diff --git a/src/WatcherCommand.php b/src/WatcherCommand.php index 03e50bd..b72ceaf 100644 --- a/src/WatcherCommand.php +++ b/src/WatcherCommand.php @@ -23,7 +23,7 @@ protected function execute(InputInterface $input, OutputInterface $output) { $options = $this->determineOptions($input); - list($watcher, $options) = WatcherFactory::create($options); + [$watcher, $options] = WatcherFactory::create($options); $this->displayOptions($options, $input, $output);