Skip to content

Commit

Permalink
minor #841 Fix installation when using composer 1.7+ (fbourigault)
Browse files Browse the repository at this point in the history
This PR was merged into the master branch.

Discussion
----------

Fix installation when using composer 1.7+

This avoid the following error while installing the demo application with composer 1.7.

```
Declaration of Symfony\Flex\ParallelDownloader::getRemoteContents($originUrl, $fileUrl, $context) should be compatible with Composer\Util\RemoteFilesystem::getRemoteContents
  ($originUrl, $fileUrl, $context, ?array &$responseHeaders = NULL)
```

Commits
-------

14ba756 fix installation when using composer 1.7+
  • Loading branch information
javiereguiluz committed Aug 10, 2018
2 parents 7eaff0d + 14ba756 commit 1a4cf4d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"sensiolabs/security-checker": "^4.1",
"symfony/asset": "^4.1",
"symfony/expression-language": "^4.1",
"symfony/flex": "^1.0",
"symfony/flex": "^1.0.86",
"symfony/form": "^4.1",
"symfony/framework-bundle": "^4.1",
"symfony/monolog-bundle": "^3.1",
Expand Down
12 changes: 6 additions & 6 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 1a4cf4d

Please sign in to comment.