Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
3c8b7cd
Add tests for PHP 7.4
Jan 9, 2021
af651d3
Fix CrudTrait fields parameter
Jan 16, 2021
3563d8d
Return object references from Collection
Jan 19, 2021
63814b0
Convert boolean values to ints
May 23, 2021
a856e9f
Log queries when debug is on
May 23, 2021
fa31d3f
Add documentation for JOINs
May 23, 2021
2029b20
update: add $limit support
GuilhermeBarile May 17, 2025
06cee75
feat: add NOT support in where conditions
GuilhermeBarile May 17, 2025
072a49a
fix: add main table reference to default primary key
GuilhermeBarile May 17, 2025
a84430f
feat: allow joining the same table more than 1 time
GuilhermeBarile May 24, 2025
27d2f84
CrudTrait refactoring/improvements
GuilhermeBarile Dec 29, 2025
e22a978
DB: Fix query `order` param
GuilhermeBarile Jan 1, 2026
cb82fdc
feat: add CI
GuilhermeBarile Feb 15, 2026
e8052e7
DBAL + Model support
GuilhermeBarile Feb 14, 2026
3bbaea4
Update JOIN syntax
GuilhermeBarile Feb 15, 2026
a5e84e5
Add SQL functions usage documentation
GuilhermeBarile Feb 15, 2026
a356176
Use the DB constructor instead of DB::connect()
GuilhermeBarile Feb 15, 2026
aaeda47
Support dotted fields in responses
GuilhermeBarile Feb 15, 2026
5a26391
fix: prepend table name when searching with pk
GuilhermeBarile Feb 15, 2026
dc5ceaa
Add tests for nested transactions
GuilhermeBarile Feb 16, 2026
f9a0183
feat: Collection Supports By Reference Iteration
GuilhermeBarile Feb 22, 2026
ff90a3a
fix: Order and Group By syntax
GuilhermeBarile Feb 22, 2026
e9a1069
feat: Add DB\Expr
GuilhermeBarile Feb 22, 2026
a8daaf7
feat: Support locks (FOR SHARE, FOR UPDATE)
GuilhermeBarile Feb 24, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: CI

on:
push:
pull_request:

jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php-version: ['8.1', '8.2', '8.3']

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
coverage: none
tools: composer:v2

- name: Install dependencies
run: composer update --prefer-dist --no-interaction

- name: Run tests
run: vendor/bin/phpunit
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ php:
- 7.1
- 7.2
- 7.3
- 7.4

services: mysql

Expand Down
Loading
Loading