Skip to content
This repository has been archived by the owner. It is now read-only.

Commit

Permalink
Add Laravel 8 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
joskfg authored Dec 22, 2020
1 parent 9467dd8 commit 4e32047
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
"php": ">=7.1",
"fabpot/goutte": "^3.2",
"psr/log": "^1.0",
"illuminate/database": "^5.8 || ^6.0 || ^7.0",
"illuminate/events": "^5.8 || ^6.0 || ^7.0",
"illuminate/database": "^5.8 || ^6.0 || ^7.0 || ^8.0",
"illuminate/events": "^5.8 || ^6.0 || ^7.0 || ^8.0",
"ext-dom": "*"
},
"require-dev": {
Expand Down

1 comment on commit 4e32047

@giulioprinaricotti
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This doesn't seem to work as package still requires fabpot/goutte 3.2 which in turn requests "guzzlehttp/guzzle": "^6.0.1". Laravel 8 requires ^7.0. I've downgraded the request and the package is installed. Still I don't know if I've broken something else con laravel

Please sign in to comment.