Skip to content

fix attribute vs relation priorty #2577

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 27 commits into
base: 5.x
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
2e46a6d
use laravel get attribute
mshamaseen Aug 18, 2023
29935f2
update docker
mshamaseen Aug 19, 2023
a091681
update docker
mshamaseen Aug 20, 2023
07de6e5
Merge branch 'master' of https://github.com/mshamaseen/laravel-mongod…
mshamaseen Aug 20, 2023
9430d08
remove mongo db < 5 support
mshamaseen Aug 20, 2023
77dc9be
replace mongod with mongosh
mshamaseen Aug 20, 2023
80527f5
replace mongod with mongosh
mshamaseen Aug 20, 2023
e4fbb8d
replace mongod with mongosh
mshamaseen Aug 20, 2023
87b6453
replace mongod with mongosh
mshamaseen Aug 20, 2023
0a73a11
detach
mshamaseen Aug 20, 2023
5385aa4
remove mongo version 7 support as it is so new and yield to some errors
mshamaseen Aug 20, 2023
19db89b
Merge branch 'master' of github.com:mshamaseen/laravel-mongodb into n…
mshamaseen Aug 20, 2023
21fac7d
BelongsToMany relation now can't use the same relation name as column…
mshamaseen Aug 21, 2023
d0666b6
update documentation
mshamaseen Aug 21, 2023
dbfa900
Merge pull request #1 from mshamaseen/next-v4
mshamaseen Aug 21, 2023
61842f5
update readme
mshamaseen Aug 21, 2023
c8a6219
Merge branch 'master' of github.com:mshamaseen/laravel-mongodb
mshamaseen Aug 21, 2023
f18bf78
change package name for it to work with packagist
mshamaseen Aug 21, 2023
c0e1ee3
change package name for it to work with packagist
mshamaseen Aug 21, 2023
7a1fb98
add packagist using new package name
mshamaseen Aug 21, 2023
61a0505
Merge branch 'master' of github.com:jenssegers/laravel-mongodb into r…
mshamaseen Aug 22, 2023
09c1a9d
Merge branch 'master' of github.com:mshamaseen/laravel-mongodb into r…
mshamaseen Aug 22, 2023
815f37e
prepare for mering with upstream
mshamaseen Aug 22, 2023
21a46e1
return FUNDING.yml
mshamaseen Aug 22, 2023
cc1631e
fix php cs fixer
mshamaseen Aug 24, 2023
ed45cf7
revision updates
mshamaseen Aug 24, 2023
e3330ae
revert extra
mshamaseen Aug 24, 2023
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update readme
  • Loading branch information
mshamaseen committed Aug 21, 2023
commit 61842f5c2df5e57e6068c4919df0210c20ab60c0
15 changes: 3 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,21 +60,12 @@ Make sure you have the MongoDB PHP driver installed. You can find installation i
### Laravel version Compatibility

| Laravel | Package | Maintained |
| :------ | :------------- | :----------------- |
|:--------|:---------------|:-------------------|
| 10.x | 10.x | :white_check_mark: |
| 9.x | 3.9.x | :white_check_mark: |
| 8.x | 3.8.x | :white_check_mark: |
| 8.x | 3.8.x | :x: |
| 7.x | 3.7.x | :x: |
| 6.x | 3.6.x | :x: |
| 5.8.x | 3.5.x | :x: |
| 5.7.x | 3.4.x | :x: |
| 5.6.x | 3.4.x | :x: |
| 5.5.x | 3.3.x | :x: |
| 5.4.x | 3.2.x | :x: |
| 5.3.x | 3.1.x or 3.2.x | :x: |
| 5.2.x | 2.3.x or 3.0.x | :x: |
| 5.1.x | 2.2.x or 3.0.x | :x: |
| 5.0.x | 2.1.x | :x: |
| 4.2.x | 2.0.x | :x: |

Install the package via Composer:

Expand Down