laravel-eloquent-join
laravel-eloquent-join copied to clipboard
Update to Laravel 9.
Tests run and pass locally. Not sure what the issue is with the GitHub workflow, as composer.json is in a valid format. Feel free to edit as necessary.
Hi @fico7489, will this be investigated?
Something new?
Any news with this PR? @fico7489
Any news with this PR? @fico7489
HI @eliurkis, as a work-around I have been doing the following in my composer.json until this package gets updated:
{
[...],
repositories: [
[...]
{
"type": "vcs",
"url": "https://github.com/GeneaLabs/laravel-eloquent-join"
}
[...]
],
require: {
[...]
"fico7489/laravel-eloquent-join": "dev-master@dev",
[...]
},
[...]
}
This will install this PR.
@mikebronner This update should fix the issue with the testing that you have.
- name: Run find-and-replace to replace * with 0
uses: mad9000/actions-find-and-replace-string@1
id: laravel_version_cleaned
with:
source: ${{ matrix.laravel_version }}
find: '*'
replace: '0'
- name: Install Laravel
run: composer update --no-interaction illuminate/database:^${{ steps.laravel_version_cleaned.outputs.value }}
@eliurkis very nice, thanks!
@fico7489 Can you please merge the PR ?
done