Skip to content

Commit

Permalink
Merge pull request #13 from M165437/fix-build-command
Browse files Browse the repository at this point in the history
Fix build command
  • Loading branch information
M165437 authored Mar 21, 2020
2 parents 7b9071d + dd1f168 commit b782456
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"minimum-stability": "stable",
"require": {
"php": ">=5.6",
"symfony/process": "^2.7|^3.1.4|^4|^5"
"symfony/process": "^4|^5"
},
"require-dev": {
"phpunit/phpunit": "^5.0",
Expand Down
2 changes: 1 addition & 1 deletion src/Drafter.php
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ public function build()
{
$this->validateOptionsAndArguments();

$process = new Process(
$process = Process::fromShellCommandline(
$this->getProcessCommand()
);

Expand Down

0 comments on commit b782456

Please sign in to comment.