Skip to content

Commit 61d0662

Browse files
committed
Merge branch 'main' of github.com:utopia-php/database into feat-authorization-instance
# Conflicts: # src/Database/Adapter/Pool.php # tests/e2e/Adapter/Scopes/DocumentTests.php
2 parents 22123ad + b6541a9 commit 61d0662

28 files changed

Lines changed: 11025 additions & 584 deletions

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ jobs:
1616

1717
- name: Run CodeQL
1818
run: |
19-
docker run --rm -v $PWD:/app composer sh -c \
19+
docker run --rm -v $PWD:/app -w /app phpswoole/swoole:5.1.8-php8.3-alpine sh -c \
2020
"composer install --profile --ignore-platform-reqs && composer check"

.github/workflows/linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ jobs:
1616

1717
- name: Run Linter
1818
run: |
19-
docker run --rm -v $PWD:/app composer sh -c \
19+
docker run --rm -v $PWD:/app -w /app phpswoole/swoole:5.1.8-php8.3-alpine sh -c \
2020
"composer install --profile --ignore-platform-reqs && composer lint"

bin/cli.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
include 'tasks/index.php';
1414
include 'tasks/query.php';
1515
include 'tasks/relationships.php';
16+
include 'tasks/operators.php';
1617

1718
$cli
1819
->error()

bin/operators

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/sh
2+
3+
php /usr/src/code/bin/cli.php operators "$@"

0 commit comments

Comments
 (0)