Skip to content
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

[Feature] Add SQL Data Source #379

Merged
merged 8 commits into from
Sep 9, 2024
Merged
Changes from 1 commit
Commits
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
Prev Previous commit
Next Next commit
Add doctrine dependencies
msoroka committed Sep 4, 2024
commit ce34688429db041b8fc4b57da3ca9cae7ee7f3b7
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -13,14 +13,15 @@
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"pimcore/compatibility-bridge-v10": "^1.0",
"php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
"ext-fileinfo": "*",
"ext-json": "*",
"doctrine/dbal": "^2.12 || ^3.5",
"dragonmantank/cron-expression": "^3.1",
"league/flysystem-sftp-v3": "^3.0",
"nesbot/carbon": "^2.27",
"phpoffice/phpspreadsheet": "^1.24 || ^2.2",
"pimcore/compatibility-bridge-v10": "^1.0",
"pimcore/data-hub": "^1.6",
"pimcore/pimcore": "^10.6 || ^11.0",
"symfony/mime": "^5.2 || ^6.2",

Unchanged files with check annotations Beta

$queryBuilder->groupBy($this->groupBy);
}
$result = $queryBuilder->executeQuery()->fetchAllAssociative();

Check failure on line 64 in src/DataSource/Loader/SqlLoader.php

GitHub Actions / Static Analysis with PHPStan (8.0, lowest, false)

Call to an undefined method Doctrine\DBAL\Query\QueryBuilder::executeQuery().
$filesystemLocal = new Filesystem(new LocalFilesystemAdapter('/'));
$stream = fopen('php://temp', 'r+');