Skip to content

Commit

Permalink
Support Laravel 7
Browse files Browse the repository at this point in the history
  • Loading branch information
staudenmeir committed Jan 31, 2020
1 parent 7c3219e commit 8e5fd6b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Supports all versions of Dusk.

## Installation

composer require --dev staudenmeir/dusk-updater
composer require --dev staudenmeir/dusk-updater:"^1.1"

Users of Laravel 5.4 have to register the new provider in `AppServiceProvider::register()`:

Expand Down
7 changes: 3 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,11 @@
}
],
"require": {
"php": ">=5.6.4",
"ext-openssl": "*",
"ext-zip": "*"
"php": "^7.1.3",
"symfony/process": "^4.2 || ^5.0"
},
"require-dev": {
"orchestra/testbench": "^4.0"
"orchestra/testbench": "^5.0"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion src/DetectsChromeVersion.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ protected function chromeVersion($os)
}

foreach ($commands as $command) {
$process = new Process($command);
$process = Process::fromShellCommandline($command);

$process->run();

Expand Down

0 comments on commit 8e5fd6b

Please sign in to comment.