-
Notifications
You must be signed in to change notification settings - Fork 44
Update meilisearch-php to v0.14 #47
Changes from all commits
b177af3
1c71e65
02d786f
0a03059
7cc222e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 +24,8 @@ | |
"require": { | ||
"php": "^7.2.5", | ||
"laravel/scout": "^8.0", | ||
"meilisearch/meilisearch-php": "^0.13" | ||
"meilisearch/meilisearch-php": "^0.14", | ||
"http-interop/http-factory-guzzle": "^1.0" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Aren't There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't think Laravel comes with There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It might be worth removing still though as it's only required for Guzzle 6 and 7. I could add a note in the README about it? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No the factory is not installed by default. I don't know if we should remove it, a part of me is yeah we should because we don't want to "tie" the package with guzzle but in other hand as laravel pre-install guzzle since the version 7 why should we not simplify user life by pre-installing the factory, it will be good for most of laravel users. For me both are ok, but I prefer option 2 😛 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Let's keeping it (option 2). If someone is struggling with this decision, we will see! |
||
}, | ||
"require-dev": { | ||
"orchestra/testbench": "^5.0 || ^6.0", | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could we add a line for Guzzle 7:
For users using Laravel < 8 but who want to use guzzle 7
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it ok to you ?