Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: tareq1988/wp-eloquent
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: deliciousbrains/wp-eloquent
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 1 commit
  • 12 files changed
  • 1 contributor

Commits on Apr 5, 2023

  1. Copy the full SHA
    2d18ef9 View commit details
Showing with 552 additions and 173 deletions.
  1. +6 −12 composer.json
  2. +527 −143 composer.lock
  3. +1 −1 src/Eloquent/Builder.php
  4. +2 −2 src/Eloquent/Database.php
  5. +2 −2 src/Eloquent/Facades/DB.php
  6. +3 −2 src/Eloquent/Model.php
  7. +1 −1 src/Eloquent/Resolver.php
  8. +2 −2 src/WP/Comment.php
  9. +2 −2 src/WP/Post.php
  10. +2 −2 src/WP/PostMeta.php
  11. +2 −2 src/WP/User.php
  12. +2 −2 src/WP/UserMeta.php
18 changes: 6 additions & 12 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,16 @@
{
"name": "tareq1988/wp-eloquent",
"description": "Eloquent ORM for WordPress",
"name": "wpe/wp-eloquent",
"description": "Eloquent ORM for WordPress. Forked from tareq1988/wp-eloquent",
"keywords": ["wordpress", "plugin", "orm", "eloquent", "sql"],
"homepage": "https://github.com/tareq1988/wp-eloquent",
"homepage": "https://github.com/deliciousbrains/wp-eloquent",
"require": {
"illuminate/database": "^5.4",
"illuminate/pagination": "^5.4"
"illuminate/database": "^6.2",
"illuminate/pagination": "^6.2"
},
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Tareq Hasan",
"email": "tareq@wedevs.com"
}
],
"autoload" : {
"psr-4" : {
"WeDevs\\ORM\\": "src/"
"WPEngine\\ORM\\": "src/"
}
}
}
Loading