├── .codecov.yaml ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug.yml │ ├── config.yml │ ├── proposal.yml │ └── task.yml ├── PULL_REQUEST_TEMPLATE.md ├── actions │ ├── codecov-report │ │ └── action.yml │ └── setup-php-env │ │ └── action.yml ├── dependabot.yml └── workflows │ ├── automation-changelog-release.yml │ ├── automation-changelog-update.yml │ ├── automation-release-description-update.yml │ ├── baseline.yml │ ├── dependabot-auto-merge.yml │ ├── docs.yml │ ├── job-benchmark-tests.yml │ ├── job-examples.yml │ ├── job-extension-tests.yml │ ├── job-mutation-tests.yml │ ├── job-pg-query-extension.yml │ ├── job-static-analyze.yml │ ├── job-tests.yml │ ├── job-windows-tests.yml │ ├── monorepo-split.yml │ ├── pr-check.yml │ ├── pr-comment.yml │ ├── release.yml │ ├── test-suite.yml │ └── test-website.yml ├── .gitignore ├── .nix ├── php │ └── lib │ │ ├── .gitignore │ │ ├── blackfire.ini.dist │ │ ├── pcov.ini.dist │ │ ├── php.ini.dist │ │ └── xdebug.ini.dist ├── pkgs │ ├── flow-php │ │ └── package.nix │ ├── php-brotli │ │ └── package.nix │ ├── php-lz4 │ │ └── package.nix │ ├── php-pg-query-ext │ │ └── package.nix │ ├── php-snappy │ │ └── package.nix │ └── php-zstd │ │ └── package.nix └── shell │ ├── .gitignore │ └── starship.toml.dist ├── .php-cs-fixer.php ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── SECURITY.md ├── bin └── docs.php ├── compose.yml.dist ├── composer.json ├── composer.lock ├── documentation ├── adrs.md ├── adrs │ ├── extension-points.md │ ├── static-analysis-baseline.md │ └── template.md ├── assets │ └── img │ │ ├── daisy_bush.png │ │ ├── flow_php_banner_01_2025.png │ │ ├── flow_php_banner_02_2022.png │ │ ├── light_slate_blue.png │ │ ├── mirage.png │ │ ├── sunset_orange.png │ │ └── warm_blue.png ├── components │ ├── adapters │ │ ├── avro.md │ │ ├── chartjs.md │ │ ├── csv.md │ │ ├── doctrine.md │ │ ├── elasticsearch.md │ │ ├── excel.md │ │ ├── google-sheet.md │ │ ├── http.md │ │ ├── json.md │ │ ├── logger.md │ │ ├── meilisearch.md │ │ ├── parquet.md │ │ ├── text.md │ │ └── xml.md │ ├── bridges │ │ ├── filesystem-async-aws-bridge.md │ │ ├── filesystem-azure-bridge.md │ │ ├── monolog-http-bridge.md │ │ ├── openapi-specification-bridge.md │ │ └── symfony-http-foundation-bridge.md │ ├── cli │ │ └── docs.md │ ├── core │ │ ├── aggregations.md │ │ ├── batch-processing.md │ │ ├── building-blocks.md │ │ ├── caching.md │ │ ├── constraints.md │ │ ├── core.md │ │ ├── data-manipulation.md │ │ ├── data-retrieval.md │ │ ├── display.md │ │ ├── error-handling.md │ │ ├── execution-mode.md │ │ ├── filter.md │ │ ├── group-by.md │ │ ├── join.md │ │ ├── limit.md │ │ ├── map.md │ │ ├── offset.md │ │ ├── partitioning.md │ │ ├── pivot.md │ │ ├── rename.md │ │ ├── retry.md │ │ ├── save-mode.md │ │ ├── schema.md │ │ ├── select-drop.md │ │ ├── sort.md │ │ ├── transformations.md │ │ ├── until.md │ │ └── window-functions.md │ ├── extensions │ │ └── pg-query-ext.md │ └── libs │ │ ├── array-dot.md │ │ ├── azure-sdk.md │ │ ├── doctrine-dbal-bulk.md │ │ ├── dremel.md │ │ ├── filesystem.md │ │ ├── parquet-viewer.md │ │ ├── parquet.md │ │ ├── pg-query.md │ │ ├── snappy.md │ │ ├── types.md │ │ └── types │ │ └── architecture.md ├── contributing.md ├── contributing │ ├── environment.md │ ├── guidelines.md │ ├── nix.md │ └── wasm.md ├── examples.md ├── installation.md ├── installation │ ├── docker.md │ ├── homebrew.md │ └── phive.md ├── introduction.md ├── quick-start.md ├── security.md ├── style-guide.md └── upgrading.md ├── examples ├── .gitignore ├── clean.php ├── run.php └── topics │ ├── aggregations │ ├── aggregating_functions │ │ ├── average │ │ │ ├── code.php │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── flow_php_example.zip │ │ │ └── output.txt │ │ ├── first │ │ │ ├── code.php │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── flow_php_example.zip │ │ │ └── output.txt │ │ ├── last │ │ │ ├── code.php │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── flow_php_example.zip │ │ │ └── output.txt │ │ ├── max │ │ │ ├── code.php │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── flow_php_example.zip │ │ │ └── output.txt │ │ ├── min │ │ │ ├── code.php │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── flow_php_example.zip │ │ │ └── output.txt │ │ └── sum │ │ │ ├── code.php │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── flow_php_example.zip │ │ │ └── output.txt │ └── grouping │ │ ├── group_by │ │ ├── code.php │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── flow_php_example.zip │ │ └── output.txt │ │ ├── group_by_sum │ │ ├── code.php │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── flow_php_example.zip │ │ └── output.txt │ │ └── priority.txt │ ├── data_frame │ ├── batch_by │ │ ├── code.php │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── description.md │ │ ├── flow_php_example.zip │ │ ├── output.txt │ │ └── priority.txt │ ├── batch_size │ │ ├── collect │ │ │ ├── code.php │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── description.md │ │ │ ├── flow_php_example.zip │ │ │ ├── output.txt │ │ │ └── priority.txt │ │ ├── constant_size │ │ │ ├── code.php │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── description.md │ │ │ ├── flow_php_example.zip │ │ │ ├── output.txt │ │ │ └── priority.txt │ │ └── priority.txt │ ├── cache │ │ ├── code.php │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── flow_php_example.zip │ │ ├── output.txt │ │ └── output │ │ │ └── .gitignore │ ├── columns │ │ ├── create │ │ │ ├── code.php │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── description.md │ │ │ ├── flow_php_example.zip │ │ │ ├── output.txt │ │ │ └── priority.txt │ │ ├── rename │ │ │ ├── code.php │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── description.md │ │ │ ├── flow_php_example.zip │ │ │ ├── output.txt │ │ │ └── priority.txt │ │ └── reorder │ │ │ ├── code.php │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── flow_php_example.zip │ │ │ └── output.txt │ ├── data_reading │ │ ├── array │ │ │ ├── code.php │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── description.md │ │ │ ├── flow_php_example.zip │ │ │ ├── output.txt │ │ │ └── priority.txt │ │ ├── csv │ │ │ ├── code.php │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── description.md │ │ │ ├── flow_php_example.zip │ │ │ ├── input │ │ │ │ └── dataset.csv │ │ │ ├── output.txt │ │ │ └── priority.txt │ │ ├── data_frame │ │ │ ├── code.php │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── flow_php_example.zip │ │ │ └── output.txt │ │ ├── database │ │ │ ├── code.php │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── description.md │ │ │ ├── flow_php_example.zip │ │ │ ├── input │ │ │ │ └── orders.db │ │ │ ├── output.txt │ │ │ └── priority.txt │ │ ├── elasticsearch │ │ │ ├── .env.dist │ │ │ ├── code.php │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── flow_php_example.zip │ │ │ ├── output.raw.txt │ │ │ └── output.txt │ │ ├── excel │ │ │ ├── code.php │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── description.md │ │ │ ├── flow_php_example.zip │ │ │ ├── input │ │ │ │ └── dataset.xlsx │ │ │ └── output.txt │ │ ├── http_dynamic │ │ │ ├── code.php │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── flow_php_example.zip │ │ │ └── output.txt │ │ ├── http_static │ │ │ ├── code.php │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── flow_php_example.zip │ │ │ ├── input │ │ │ │ └── example.com.html │ │ │ └── output.txt │ │ ├── json │ │ │ ├── code.php │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── description.md │ │ │ ├── flow_php_example.zip │ │ │ ├── input │ │ │ │ └── dataset.json │ │ │ ├── output.txt │ │ │ └── priority.txt │ │ ├── jsonl │ │ │ ├── code.php │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── description.md │ │ │ ├── flow_php_example.zip │ │ │ ├── input │ │ │ │ └── dataset.jsonl │ │ │ ├── output.txt │ │ │ └── priority.txt │ │ ├── parquet │ │ │ ├── code.php │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── description.md │ │ │ ├── flow_php_example.zip │ │ │ ├── input │ │ │ │ └── dataset.parquet │ │ │ ├── output.txt │ │ │ └── priority.txt │ │ ├── priority.txt │ │ ├── sequence_date │ │ │ ├── code.php │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── flow_php_example.zip │ │ │ ├── hidden.txt │ │ │ └── output.txt │ │ ├── sequence_date_recurrences │ │ │ ├── code.php │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── flow_php_example.zip │ │ │ ├── hidden.txt │ │ │ └── output.txt │ │ ├── sequence_number │ │ │ ├── code.php │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── flow_php_example.zip │ │ │ ├── hidden.txt │ │ │ └── output.txt │ │ └── xml │ │ │ ├── code.php │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── description.md │ │ │ ├── flow_php_example.zip │ │ │ ├── input │ │ │ └── dataset.xml │ │ │ ├── output.txt │ │ │ └── priority.txt │ ├── data_writing │ │ ├── array │ │ │ ├── code.php │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── description.md │ │ │ ├── flow_php_example.zip │ │ │ ├── output.txt │ │ │ └── priority.txt │ │ ├── csv │ │ │ ├── code.php │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── description.md │ │ │ ├── flow_php_example.zip │ │ │ ├── input │ │ │ │ └── dataset.jsonl │ │ │ ├── output.csv │ │ │ └── priority.txt │ │ ├── database │ │ │ ├── code.php │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── flow_php_example.zip │ │ │ ├── generate_orders.php │ │ │ └── output │ │ │ │ └── .gitignore │ │ ├── database_delete │ │ │ ├── code.php │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── description.md │ │ │ ├── flow_php_example.zip │ │ │ ├── generate_static_orders.php │ │ │ └── output │ │ │ │ └── .gitignore │ │ ├── database_upsert │ │ │ ├── code.php │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── description.md │ │ │ ├── flow_php_example.zip │ │ │ ├── generate_static_orders.php │ │ │ ├── output.txt │ │ │ └── output │ │ │ │ └── .gitignore │ │ ├── elasticsearch │ │ │ ├── .env.dist │ │ │ ├── code.php │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── flow_php_example.zip │ │ │ ├── output.raw.txt │ │ │ └── output.txt │ │ ├── jsonl │ │ │ ├── code.php │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── description.md │ │ │ ├── flow_php_example.zip │ │ │ ├── input │ │ │ │ └── dataset.jsonl │ │ │ ├── output.json │ │ │ └── priority.txt │ │ ├── overwrite │ │ │ ├── code.php │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── flow_php_example.zip │ │ │ ├── input │ │ │ │ └── file.csv │ │ │ ├── output.txt │ │ │ └── output │ │ │ │ └── .gitignore │ │ ├── parquet │ │ │ ├── code.php │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── description.md │ │ │ ├── flow_php_example.zip │ │ │ ├── output.parquet │ │ │ └── priority.txt │ │ ├── priority.txt │ │ ├── text │ │ │ ├── code.php │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── description.md │ │ │ ├── flow_php_example.zip │ │ │ ├── input │ │ │ │ └── dataset.jsonl │ │ │ ├── output.txt │ │ │ └── priority.txt │ │ └── xml │ │ │ ├── code.php │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── description.md │ │ │ ├── flow_php_example.zip │ │ │ ├── input │ │ │ └── dataset.jsonl │ │ │ ├── output.xml │ │ │ └── priority.txt │ ├── priority.txt │ └── transformations │ │ ├── custom │ │ ├── code.php │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── description.md │ │ ├── description.txt │ │ └── output.txt │ │ └── select │ │ ├── code.php │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── description.md │ │ └── output.txt │ ├── filesystem │ ├── .gitignore │ ├── azure │ │ ├── .env.dist │ │ ├── code.php │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── flow_php_example.zip │ │ ├── output.txt │ │ └── priority.txt │ ├── local │ │ ├── code.php │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── description.md │ │ ├── flow_php_example.zip │ │ ├── output.txt │ │ └── priority.txt │ ├── priority.txt │ ├── s3 │ │ ├── .env.dist │ │ ├── .gitignore │ │ ├── code.php │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── flow_php_example.zip │ │ ├── output.txt │ │ └── priority.txt │ └── stdout │ │ ├── code.php │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── description.md │ │ ├── flow_php_example.zip │ │ └── priority.txt │ ├── join │ ├── join │ │ ├── code.php │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── description.md │ │ ├── flow_php_example.zip │ │ └── output.txt │ ├── join_each │ │ ├── code.php │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── description.md │ │ ├── flow_php_example.zip │ │ └── output.txt │ └── priority.txt │ ├── partitioning │ ├── partition_pruning │ │ ├── code.php │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── flow_php_example.zip │ │ ├── input │ │ │ ├── color=blue │ │ │ │ ├── sku=PRODUCT01 │ │ │ │ │ └── 65c7e9bc4460a568233195.csv │ │ │ │ └── sku=PRODUCT02 │ │ │ │ │ └── 65c7e9bc446c2326068326.csv │ │ │ ├── color=green │ │ │ │ ├── sku=PRODUCT01 │ │ │ │ │ └── 65c7e9bc44305321518126.csv │ │ │ │ ├── sku=PRODUCT02 │ │ │ │ │ └── 65c7e9bc44421020940545.csv │ │ │ │ └── sku=PRODUCT03 │ │ │ │ │ └── 65c7e9bc44515031584752.csv │ │ │ └── color=red │ │ │ │ ├── sku=PRODUCT01 │ │ │ │ └── 65c7e9bc4386f958078278.csv │ │ │ │ ├── sku=PRODUCT02 │ │ │ │ └── 65c7e9bc440fa083889144.csv │ │ │ │ └── sku=PRODUCT03 │ │ │ │ └── 65c7e9bc44209401416287.csv │ │ └── output.txt │ ├── partitioning │ │ ├── code.php │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── description.md │ │ ├── flow_php_example.zip │ │ ├── output.txt │ │ ├── output │ │ │ └── .gitignore │ │ └── priority.txt │ ├── path_partitions │ │ ├── code.php │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── flow_php_example.zip │ │ ├── input │ │ │ ├── color=blue │ │ │ │ ├── sku=PRODUCT01 │ │ │ │ │ └── 65c7e9bc4460a568233195.csv │ │ │ │ └── sku=PRODUCT02 │ │ │ │ │ └── 65c7e9bc446c2326068326.csv │ │ │ ├── color=green │ │ │ │ ├── sku=PRODUCT01 │ │ │ │ │ └── 65c7e9bc44305321518126.csv │ │ │ │ ├── sku=PRODUCT02 │ │ │ │ │ └── 65c7e9bc44421020940545.csv │ │ │ │ └── sku=PRODUCT03 │ │ │ │ │ └── 65c7e9bc44515031584752.csv │ │ │ └── color=red │ │ │ │ ├── sku=PRODUCT01 │ │ │ │ └── 65c7e9bc4386f958078278.csv │ │ │ │ ├── sku=PRODUCT02 │ │ │ │ └── 65c7e9bc440fa083889144.csv │ │ │ │ └── sku=PRODUCT03 │ │ │ │ └── 65c7e9bc44209401416287.csv │ │ └── output.txt │ ├── priority.txt │ └── reading │ │ ├── code.php │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── flow_php_example.zip │ │ ├── input │ │ ├── color=blue │ │ │ ├── sku=PRODUCT01 │ │ │ │ └── 65c7e9bc4460a568233195.csv │ │ │ └── sku=PRODUCT02 │ │ │ │ └── 65c7e9bc446c2326068326.csv │ │ ├── color=green │ │ │ ├── sku=PRODUCT01 │ │ │ │ └── 65c7e9bc44305321518126.csv │ │ │ ├── sku=PRODUCT02 │ │ │ │ └── 65c7e9bc44421020940545.csv │ │ │ └── sku=PRODUCT03 │ │ │ │ └── 65c7e9bc44515031584752.csv │ │ └── color=red │ │ │ ├── sku=PRODUCT01 │ │ │ └── 65c7e9bc4386f958078278.csv │ │ │ ├── sku=PRODUCT02 │ │ │ └── 65c7e9bc440fa083889144.csv │ │ │ └── sku=PRODUCT03 │ │ │ └── 65c7e9bc44209401416287.csv │ │ ├── output.txt │ │ └── priority.txt │ ├── schema │ ├── apply │ │ ├── code.php │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── description.md │ │ ├── flow_php_example.zip │ │ ├── output.txt │ │ └── priority.txt │ ├── display │ │ ├── code.php │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── flow_php_example.zip │ │ └── output.txt │ ├── inferring │ │ ├── code.php │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── description.md │ │ ├── flow_php_example.zip │ │ ├── input │ │ │ └── dataset.csv │ │ ├── output.txt │ │ └── output │ │ │ └── .gitignore │ ├── priority.txt │ └── validate │ │ ├── code.php │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── flow_php_example.zip │ │ ├── output.txt │ │ └── priority.txt │ ├── transformations │ ├── array │ │ ├── expand │ │ │ ├── code.php │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── flow_php_example.zip │ │ │ └── output.txt │ │ └── unpack │ │ │ ├── code.php │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── flow_php_example.zip │ │ │ └── output.txt │ ├── call │ │ ├── code.php │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── description.md │ │ ├── flow_php_example.zip │ │ └── output.txt │ ├── filtering │ │ ├── basic │ │ │ ├── code.php │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── description.md │ │ │ ├── flow_php_example.zip │ │ │ ├── output.txt │ │ │ └── priority.txt │ │ ├── divide │ │ │ ├── code.php │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── flow_php_example.zip │ │ │ └── output.txt │ │ └── mod │ │ │ ├── code.php │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── flow_php_example.zip │ │ │ └── output.txt │ ├── literals │ │ ├── code.php │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── flow_php_example.zip │ │ └── output.txt │ ├── match │ │ ├── code.php │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── flow_php_example.zip │ │ └── output.txt │ ├── math │ │ ├── code.php │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── flow_php_example.zip │ │ └── output.txt │ ├── priority.txt │ ├── size │ │ ├── code.php │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── flow_php_example.zip │ │ └── output.txt │ ├── sort │ │ ├── code.php │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── flow_php_example.zip │ │ └── output.txt │ └── when │ │ ├── basic │ │ ├── code.php │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── description.md │ │ ├── flow_php_example.zip │ │ ├── output.txt │ │ └── priority.txt │ │ ├── else_when │ │ ├── code.php │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── description.md │ │ ├── flow_php_example.zip │ │ ├── output.txt │ │ └── priority.txt │ │ ├── null │ │ ├── code.php │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── flow_php_example.zip │ │ └── output.txt │ │ └── odd │ │ ├── code.php │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── flow_php_example.zip │ │ └── output.txt │ ├── types │ ├── assertions │ │ ├── code.php │ │ ├── composer.json │ │ ├── composer.lock │ │ └── flow_php_example.zip │ └── structures │ │ ├── code.php │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── flow_php_example.zip │ │ └── output.txt │ └── window_functions │ └── dens_rank │ ├── code.php │ ├── composer.json │ ├── composer.lock │ ├── flow_php_example.zip │ └── output.txt ├── infection.json ├── manifest.json ├── monorepo-builder.php ├── phpbench.json ├── phpdoc ├── .phpdoc │ └── template │ │ ├── base.html.twig │ │ ├── components │ │ ├── header-title.html.twig │ │ ├── header.html.twig │ │ ├── sidebar.html.twig │ │ └── table-of-contents.html.twig │ │ ├── css │ │ ├── custom.css.twig │ │ ├── custom.html.twig │ │ └── macros │ │ │ └── colours.macro.twig │ │ ├── index.html.twig │ │ ├── layout.html.twig │ │ └── namespace.html.twig ├── adapter.chartjs.xml ├── adapter.csv.xml ├── adapter.doctrine.xml ├── adapter.elasticsearch.xml ├── adapter.excel.xml ├── adapter.google-sheet.xml ├── adapter.http.xml ├── adapter.json.xml ├── adapter.logger.xml ├── adapter.meilisearch.xml ├── adapter.parquet.xml ├── adapter.text.xml ├── adapter.xml.xml ├── bridge.filesystem.async-aws.xml ├── bridge.filesystem.azure.xml ├── bridge.monolog.http.xml ├── bridge.openapi.specification.xml ├── bridge.symfony.http-foundation.xml ├── cli.xml ├── core.xml ├── lib.array-dot.xml ├── lib.azure-sdk.xml ├── lib.doctrine-dbal-bulk.xml ├── lib.filesystem.xml ├── lib.parquet-viewer.xml ├── lib.parquet.xml ├── lib.pg-query.xml ├── lib.rdsl.xml ├── lib.snappy.xml └── lib.types.xml ├── phpstan.neon ├── phpunit.xml.dist ├── rector.src.php ├── rector.tests.php ├── shell.nix ├── src ├── adapter │ ├── etl-adapter-avro │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ └── Flow │ │ │ └── ETL │ │ │ └── Adapter │ │ │ └── Avro │ │ │ ├── FlixTech │ │ │ ├── AvroExtractor.php │ │ │ └── AvroLoader.php │ │ │ └── functions.php │ ├── etl-adapter-chartjs │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ └── Flow │ │ │ └── ETL │ │ │ └── Adapter │ │ │ └── ChartJS │ │ │ ├── Chart.php │ │ │ ├── Chart │ │ │ ├── BarChart.php │ │ │ ├── LineChart.php │ │ │ └── PieChart.php │ │ │ ├── ChartJSLoader.php │ │ │ ├── Resources │ │ │ └── template │ │ │ │ └── full_page.html │ │ │ └── functions.php │ ├── etl-adapter-csv │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ └── Flow │ │ │ └── ETL │ │ │ └── Adapter │ │ │ └── CSV │ │ │ ├── CSVDetector.php │ │ │ ├── CSVExtractor.php │ │ │ ├── CSVLineReader.php │ │ │ ├── CSVLoader.php │ │ │ ├── CSVRowNormalizer.php │ │ │ ├── Detector │ │ │ ├── Option.php │ │ │ └── Options.php │ │ │ ├── Exception │ │ │ └── CantDetectCSVOptions.php │ │ │ ├── RowsNormalizer.php │ │ │ ├── RowsNormalizer │ │ │ └── EntryNormalizer.php │ │ │ └── functions.php │ ├── etl-adapter-doctrine │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── composer.json │ │ └── src │ │ │ └── Flow │ │ │ └── ETL │ │ │ └── Adapter │ │ │ └── Doctrine │ │ │ ├── DbalDataFrameFactory.php │ │ │ ├── DbalKeySetExtractor.php │ │ │ ├── DbalLimitOffsetExtractor.php │ │ │ ├── DbalLoader.php │ │ │ ├── DbalMetadata.php │ │ │ ├── DbalQueryExtractor.php │ │ │ ├── DbalTypesDetector.php │ │ │ ├── LiteralParameter.php │ │ │ ├── Order.php │ │ │ ├── OrderBy.php │ │ │ ├── Pages.php │ │ │ ├── Pagination │ │ │ ├── Key.php │ │ │ ├── KeySet.php │ │ │ └── Order.php │ │ │ ├── Parameter.php │ │ │ ├── ParametersSet.php │ │ │ ├── QueryParameter.php │ │ │ ├── RowsNormalizer.php │ │ │ ├── SchemaConverter.php │ │ │ ├── Table.php │ │ │ ├── TransactionalDbalLoader.php │ │ │ ├── TypesMap.php │ │ │ └── functions.php │ ├── etl-adapter-elasticsearch │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ └── Flow │ │ │ └── ETL │ │ │ └── Adapter │ │ │ └── Elasticsearch │ │ │ ├── ElasticsearchPHP │ │ │ ├── DocumentDataSource.php │ │ │ ├── ElasticsearchExtractor.php │ │ │ ├── ElasticsearchLoader.php │ │ │ ├── HitsIntoRowsTransformer.php │ │ │ ├── PointInTime.php │ │ │ ├── SearchParams.php │ │ │ └── SearchResults.php │ │ │ ├── EntryIdFactory │ │ │ ├── EntryIdFactory.php │ │ │ └── HashIdFactory.php │ │ │ ├── IdFactory.php │ │ │ └── functions.php │ ├── etl-adapter-excel │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ └── Flow │ │ │ └── ETL │ │ │ └── Adapter │ │ │ └── Excel │ │ │ ├── DSL │ │ │ └── functions.php │ │ │ ├── ExcelExtractor.php │ │ │ ├── ExcelReader.php │ │ │ ├── Function │ │ │ └── IsValidExcelSheetName.php │ │ │ └── Sheet │ │ │ ├── SheetNameAssertion.php │ │ │ └── SheetsManager.php │ ├── etl-adapter-google-sheet │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ └── Flow │ │ │ └── ETL │ │ │ └── Adapter │ │ │ └── GoogleSheet │ │ │ ├── Columns.php │ │ │ ├── GoogleSheetExtractor.php │ │ │ ├── SheetRange.php │ │ │ └── functions.php │ ├── etl-adapter-http │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ └── Flow │ │ │ └── ETL │ │ │ └── Adapter │ │ │ └── Http │ │ │ ├── ContentTypeDetector.php │ │ │ ├── DSL │ │ │ └── functions.php │ │ │ ├── DynamicExtractor │ │ │ └── NextRequestFactory.php │ │ │ ├── PsrHttpClientDynamicExtractor.php │ │ │ ├── PsrHttpClientStaticExtractor.php │ │ │ ├── RequestEntriesFactory.php │ │ │ ├── ResponseEntriesFactory.php │ │ │ └── ResponseType.php │ ├── etl-adapter-json │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ └── Flow │ │ │ └── ETL │ │ │ └── Adapter │ │ │ └── JSON │ │ │ ├── JSONMachine │ │ │ ├── JsonExtractor.php │ │ │ └── JsonLinesExtractor.php │ │ │ ├── JsonLinesLoader.php │ │ │ ├── JsonLoader.php │ │ │ ├── RowsNormalizer.php │ │ │ ├── RowsNormalizer │ │ │ └── EntryNormalizer.php │ │ │ └── functions.php │ ├── etl-adapter-logger │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ └── Flow │ │ │ └── ETL │ │ │ └── Adapter │ │ │ └── Logger │ │ │ ├── Logger │ │ │ └── DumpLogger.php │ │ │ └── PsrLoggerLoader.php │ ├── etl-adapter-meilisearch │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ └── Flow │ │ │ └── ETL │ │ │ └── Adapter │ │ │ └── Meilisearch │ │ │ ├── MeilisearchPHP │ │ │ ├── HitsIntoRowsTransformer.php │ │ │ ├── MeilisearchExtractor.php │ │ │ ├── MeilisearchLoader.php │ │ │ ├── SearchParams.php │ │ │ └── SearchResults.php │ │ │ └── functions.php │ ├── etl-adapter-parquet │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ └── Flow │ │ │ └── ETL │ │ │ └── Adapter │ │ │ └── Parquet │ │ │ ├── ParquetExtractor.php │ │ │ ├── ParquetLoader.php │ │ │ ├── RowsNormalizer.php │ │ │ ├── SchemaConverter.php │ │ │ └── functions.php │ ├── etl-adapter-text │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ └── Flow │ │ │ └── ETL │ │ │ └── Adapter │ │ │ └── Text │ │ │ ├── TextExtractor.php │ │ │ ├── TextLoader.php │ │ │ └── functions.php │ └── etl-adapter-xml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── Flow │ │ └── ETL │ │ └── Adapter │ │ └── XML │ │ ├── Abstraction │ │ ├── XMLAttribute.php │ │ ├── XMLNode.php │ │ └── XMLNodeType.php │ │ ├── Loader │ │ └── XMLLoader.php │ │ ├── RowsNormalizer.php │ │ ├── RowsNormalizer │ │ ├── EntryNormalizer.php │ │ └── EntryNormalizer │ │ │ └── PHPValueNormalizer.php │ │ ├── XMLParserExtractor.php │ │ ├── XMLReaderExtractor.php │ │ ├── XMLWriter.php │ │ ├── XMLWriter │ │ └── DOMDocumentWriter.php │ │ └── functions.php ├── bridge │ ├── filesystem │ │ ├── async-aws │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ └── Flow │ │ │ │ └── Filesystem │ │ │ │ └── Bridge │ │ │ │ └── AsyncAWS │ │ │ │ ├── AsyncAWSS3DesintationStream │ │ │ │ └── AsyncAWSS3BlockLifecycle.php │ │ │ │ ├── AsyncAWSS3DestinationStream.php │ │ │ │ ├── AsyncAWSS3Filesystem.php │ │ │ │ ├── AsyncAWSS3SourceStream.php │ │ │ │ ├── AsyncAWSS3SourceStream │ │ │ │ └── Range.php │ │ │ │ ├── BlockList.php │ │ │ │ ├── ContentTypeDetector.php │ │ │ │ ├── DSL │ │ │ │ └── functions.php │ │ │ │ ├── Options.php │ │ │ │ └── PathOption.php │ │ └── azure │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── composer.json │ │ │ └── src │ │ │ └── Flow │ │ │ └── Filesystem │ │ │ └── Bridge │ │ │ └── Azure │ │ │ ├── AzureBlobDestinationStream.php │ │ │ ├── AzureBlobDestinationStream │ │ │ └── AzureBlobBlockLifecycle.php │ │ │ ├── AzureBlobFilesystem.php │ │ │ ├── AzureBlobSourceStream.php │ │ │ ├── DSL │ │ │ └── functions.php │ │ │ └── Options.php │ ├── monolog │ │ └── http │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── composer.json │ │ │ └── src │ │ │ └── Flow │ │ │ └── Bridge │ │ │ └── Monolog │ │ │ └── Http │ │ │ ├── Config.php │ │ │ ├── Config │ │ │ ├── RequestConfig.php │ │ │ └── ResponseConfig.php │ │ │ ├── DSL │ │ │ └── functions.php │ │ │ ├── Exception │ │ │ ├── Exception.php │ │ │ └── InvalidArgumentException.php │ │ │ ├── PSR7Processor.php │ │ │ └── Sanitization │ │ │ ├── Mask.php │ │ │ ├── Sanitizer.php │ │ │ └── SanitizerFactory.php │ ├── openapi │ │ └── specification │ │ │ ├── .github │ │ │ └── workflows │ │ │ │ └── readonly.yaml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── src │ │ │ └── Flow │ │ │ │ └── Bridge │ │ │ │ └── OpenAPI │ │ │ │ └── Specification │ │ │ │ ├── DSL │ │ │ │ └── functions.php │ │ │ │ ├── Exception │ │ │ │ ├── Exception.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ └── RuntimeException.php │ │ │ │ ├── OpenAPIConverter.php │ │ │ │ └── OpenAPIMetadata.php │ │ │ └── tests │ │ │ └── Flow │ │ │ └── Bridge │ │ │ └── OpenAPI │ │ │ └── Specification │ │ │ └── Tests │ │ │ └── Unit │ │ │ ├── FlowToOpenAPIConverterTest.php │ │ │ ├── OpenAPIConverterTest.php │ │ │ ├── OpenAPIMetadataIntegrationTest.php │ │ │ ├── OpenAPIMetadataTest.php │ │ │ └── OpenAPIToFlowConverterTest.php │ └── symfony │ │ └── http-foundation │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── composer.json │ │ └── src │ │ └── Flow │ │ └── Bridge │ │ └── Symfony │ │ └── HttpFoundation │ │ ├── DataStream.php │ │ ├── Output.php │ │ ├── Output │ │ ├── CSVOutput.php │ │ ├── JsonOutput.php │ │ ├── ParquetOutput.php │ │ ├── Type.php │ │ └── XMLOutput.php │ │ ├── Response │ │ ├── FlowBufferedResponse.php │ │ └── FlowStreamedResponse.php │ │ └── functions.php ├── cli │ ├── box.json │ ├── composer.json │ ├── flow │ └── src │ │ └── Flow │ │ └── CLI │ │ ├── Arguments │ │ ├── FilePathArgument.php │ │ └── TypedArgument.php │ │ ├── Command │ │ ├── DatabaseTableListCommand.php │ │ ├── DatabaseTableSchemaCommand.php │ │ ├── FileAnalyzeCommand.php │ │ ├── FileConvertCommand.php │ │ ├── FileReadCommand.php │ │ ├── FileRowsCountCommand.php │ │ ├── FileSchemaCommand.php │ │ ├── PipelineRunCommand.php │ │ ├── SchemaFormatCommand.php │ │ └── Traits │ │ │ ├── CSVOptions.php │ │ │ ├── ConfigOptions.php │ │ │ ├── DBOptions.php │ │ │ ├── ExcelOptions.php │ │ │ ├── JSONOptions.php │ │ │ ├── ParquetOptions.php │ │ │ ├── StatisticsOptions.php │ │ │ └── XMLOptions.php │ │ ├── DSL │ │ └── functions.php │ │ ├── Factory │ │ ├── CSVExtractorFactory.php │ │ ├── CSVLoaderFactory.php │ │ ├── ExcelExtractorFactory.php │ │ ├── ExtractorFactory.php │ │ ├── JsonExtractorFactory.php │ │ ├── JsonLoaderFactory.php │ │ ├── LoaderFactory.php │ │ ├── ParquetExtractorFactory.php │ │ ├── ParquetLoaderFactory.php │ │ ├── XMLExtractorFactory.php │ │ └── XMLLoaderFactory.php │ │ ├── FlowVersion.php │ │ ├── Formatter │ │ ├── PipelineReportFormatter.php │ │ └── ValueFormatter.php │ │ ├── Options │ │ ├── ConfigOption.php │ │ ├── FileFormat.php │ │ ├── FileFormatOption.php │ │ ├── FilePathOption.php │ │ ├── IncludeFileOption.php │ │ └── TypedOption.php │ │ ├── PipelineFactory.php │ │ └── Style │ │ └── FlowStyle.php ├── core │ └── etl │ │ ├── LICENSE │ │ ├── composer.json │ │ └── src │ │ └── Flow │ │ ├── ArrayComparison │ │ ├── ArrayComparison.php │ │ └── ArraySortByKey.php │ │ ├── Calculator │ │ ├── Calculator.php │ │ ├── Exception │ │ │ ├── Exception.php │ │ │ ├── InvalidExponentException.php │ │ │ ├── InvalidScaleException.php │ │ │ ├── NonNumericValueException.php │ │ │ └── RoundingNecessaryException.php │ │ ├── NumberNormalizer.php │ │ └── Rounding.php │ │ ├── Clock │ │ ├── FakeClock.php │ │ └── SystemClock.php │ │ ├── ETL │ │ ├── Analyze.php │ │ ├── Attribute │ │ │ ├── DocumentationDSL.php │ │ │ ├── DocumentationExample.php │ │ │ ├── Module.php │ │ │ └── Type.php │ │ ├── Cache.php │ │ ├── Cache │ │ │ ├── CacheIndex.php │ │ │ └── Implementation │ │ │ │ ├── FilesystemCache.php │ │ │ │ ├── InMemoryCache.php │ │ │ │ └── PSRSimpleCache.php │ │ ├── Config.php │ │ ├── Config │ │ │ ├── Cache │ │ │ │ ├── CacheConfig.php │ │ │ │ └── CacheConfigBuilder.php │ │ │ ├── ConfigBuilder.php │ │ │ └── Sort │ │ │ │ ├── SortConfig.php │ │ │ │ └── SortConfigBuilder.php │ │ ├── Constraint.php │ │ ├── Constraint │ │ │ ├── SortedByConstraint.php │ │ │ ├── UniqueConstraint.php │ │ │ └── UniqueConstraint │ │ │ │ ├── InMemoryStorage.php │ │ │ │ └── Storage.php │ │ ├── DSL │ │ │ └── functions.php │ │ ├── DataFrame.php │ │ ├── DataFrame │ │ │ └── GroupedDataFrame.php │ │ ├── DataFrameFactory.php │ │ ├── Dataset │ │ │ ├── Memory │ │ │ │ ├── Configuration.php │ │ │ │ ├── Consumption.php │ │ │ │ └── Unit.php │ │ │ ├── Report.php │ │ │ ├── Statistics.php │ │ │ └── Statistics │ │ │ │ ├── Column.php │ │ │ │ ├── Columns.php │ │ │ │ ├── DistinctCounter.php │ │ │ │ ├── ExecutionTime.php │ │ │ │ └── HighResolutionTime.php │ │ ├── ErrorHandler.php │ │ ├── ErrorHandler │ │ │ ├── IgnoreError.php │ │ │ ├── SkipRows.php │ │ │ └── ThrowError.php │ │ ├── Exception │ │ │ ├── ConstraintViolationException.php │ │ │ ├── DuplicatedEntriesException.php │ │ │ ├── Exception.php │ │ │ ├── FailedRetryException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidFileFormatException.php │ │ │ ├── InvalidLogicException.php │ │ │ ├── JoinException.php │ │ │ ├── KeyNotInCacheException.php │ │ │ ├── LimitReachedException.php │ │ │ ├── MissingDependencyException.php │ │ │ ├── MissingExtensionException.php │ │ │ ├── OffsetReachedException.php │ │ │ ├── OutOfMemoryException.php │ │ │ ├── RequiredPHPVersionException.php │ │ │ ├── RuntimeException.php │ │ │ ├── SchemaDefinitionNotFoundException.php │ │ │ ├── SchemaDefinitionNotUniqueException.php │ │ │ ├── SchemaValidationException.php │ │ │ └── TypeAssertionException.php │ │ ├── Extractor.php │ │ ├── Extractor │ │ │ ├── ArrayExtractor.php │ │ │ ├── BatchByExtractor.php │ │ │ ├── BatchExtractor.php │ │ │ ├── CacheExtractor.php │ │ │ ├── ChainExtractor.php │ │ │ ├── CollectingExtractor.php │ │ │ ├── DataFrameExtractor.php │ │ │ ├── FileExtractor.php │ │ │ ├── FilesExtractor.php │ │ │ ├── GeneratorExtractor.php │ │ │ ├── Limitable.php │ │ │ ├── LimitableExtractor.php │ │ │ ├── MemoryExtractor.php │ │ │ ├── OverridingExtractor.php │ │ │ ├── PathFiltering.php │ │ │ ├── PathPartitionsExtractor.php │ │ │ ├── PipelineExtractor.php │ │ │ ├── RowsExtractor.php │ │ │ ├── SequenceExtractor.php │ │ │ ├── SequenceGenerator │ │ │ │ ├── DatePeriodSequenceGenerator.php │ │ │ │ ├── NumberSequenceGenerator.php │ │ │ │ └── SequenceGenerator.php │ │ │ ├── Signal.php │ │ │ └── SortBucketsExtractor.php │ │ ├── Filesystem │ │ │ ├── FilesystemStreams.php │ │ │ ├── SaveMode.php │ │ │ └── ScalarFunctionFilter.php │ │ ├── Flow.php │ │ ├── FlowContext.php │ │ ├── Formatter.php │ │ ├── Formatter │ │ │ ├── ASCII │ │ │ │ ├── ASCIIBody.php │ │ │ │ ├── ASCIIHeaders.php │ │ │ │ ├── ASCIITable.php │ │ │ │ ├── ASCIIValue.php │ │ │ │ ├── Body.php │ │ │ │ └── Headers.php │ │ │ └── AsciiTableFormatter.php │ │ ├── Function │ │ │ ├── AggregatingFunction.php │ │ │ ├── All.php │ │ │ ├── Any.php │ │ │ ├── Append.php │ │ │ ├── ArrayExpand.php │ │ │ ├── ArrayExpand │ │ │ │ └── ArrayExpand.php │ │ │ ├── ArrayFilter.php │ │ │ ├── ArrayGet.php │ │ │ ├── ArrayGetCollection.php │ │ │ ├── ArrayKeep.php │ │ │ ├── ArrayKeyRename.php │ │ │ ├── ArrayKeys.php │ │ │ ├── ArrayKeysStyleConvert.php │ │ │ ├── ArrayMerge.php │ │ │ ├── ArrayMergeCollection.php │ │ │ ├── ArrayPathExists.php │ │ │ ├── ArrayReverse.php │ │ │ ├── ArraySort.php │ │ │ ├── ArraySort │ │ │ │ └── Sort.php │ │ │ ├── ArrayUnpack.php │ │ │ ├── ArrayValues.php │ │ │ ├── Ascii.php │ │ │ ├── Average.php │ │ │ ├── Between.php │ │ │ ├── Between │ │ │ │ └── Boundary.php │ │ │ ├── BinaryLength.php │ │ │ ├── CallUserFunc.php │ │ │ ├── Capitalize.php │ │ │ ├── Cast.php │ │ │ ├── Chunk.php │ │ │ ├── Coalesce.php │ │ │ ├── CodePointLength.php │ │ │ ├── CollapseWhitespace.php │ │ │ ├── Collect.php │ │ │ ├── CollectUnique.php │ │ │ ├── Combine.php │ │ │ ├── Concat.php │ │ │ ├── ConcatWithSeparator.php │ │ │ ├── Contains.php │ │ │ ├── Count.php │ │ │ ├── DOMElementAttributeValue.php │ │ │ ├── DOMElementAttributesCount.php │ │ │ ├── DOMElementNextSibling.php │ │ │ ├── DOMElementParent.php │ │ │ ├── DOMElementPreviousSibling.php │ │ │ ├── DOMElementValue.php │ │ │ ├── DateTimeFormat.php │ │ │ ├── DenseRank.php │ │ │ ├── Divide.php │ │ │ ├── EndsWith.php │ │ │ ├── EnsureEnd.php │ │ │ ├── EnsureStart.php │ │ │ ├── Equals.php │ │ │ ├── ExecutionMode.php │ │ │ ├── Exists.php │ │ │ ├── First.php │ │ │ ├── Functions.php │ │ │ ├── GreaterThan.php │ │ │ ├── GreaterThanEqual.php │ │ │ ├── Greatest.php │ │ │ ├── HTMLQuerySelector.php │ │ │ ├── HTMLQuerySelectorAll.php │ │ │ ├── Hash.php │ │ │ ├── IndexOf.php │ │ │ ├── IndexOfLast.php │ │ │ ├── IsEmpty.php │ │ │ ├── IsIn.php │ │ │ ├── IsNotNull.php │ │ │ ├── IsNotNumeric.php │ │ │ ├── IsNull.php │ │ │ ├── IsNumeric.php │ │ │ ├── IsType.php │ │ │ ├── IsUtf8.php │ │ │ ├── JsonDecode.php │ │ │ ├── JsonEncode.php │ │ │ ├── Last.php │ │ │ ├── Least.php │ │ │ ├── LessThan.php │ │ │ ├── LessThanEqual.php │ │ │ ├── ListFunctions.php │ │ │ ├── ListSelect.php │ │ │ ├── Literal.php │ │ │ ├── MatchCases.php │ │ │ ├── MatchCases │ │ │ │ └── MatchCondition.php │ │ │ ├── Max.php │ │ │ ├── Min.php │ │ │ ├── Minus.php │ │ │ ├── Mod.php │ │ │ ├── ModifyDateTime.php │ │ │ ├── Multiply.php │ │ │ ├── Not.php │ │ │ ├── NotEquals.php │ │ │ ├── NotSame.php │ │ │ ├── Now.php │ │ │ ├── NumberFormat.php │ │ │ ├── OnEach.php │ │ │ ├── Optional.php │ │ │ ├── Parameter.php │ │ │ ├── Plus.php │ │ │ ├── Power.php │ │ │ ├── Prepend.php │ │ │ ├── RandomString.php │ │ │ ├── Rank.php │ │ │ ├── Regex.php │ │ │ ├── RegexAll.php │ │ │ ├── RegexMatch.php │ │ │ ├── RegexMatchAll.php │ │ │ ├── RegexReplace.php │ │ │ ├── Repeat.php │ │ │ ├── Reverse.php │ │ │ ├── Round.php │ │ │ ├── RowNumber.php │ │ │ ├── Same.php │ │ │ ├── Sanitize.php │ │ │ ├── ScalarFunction.php │ │ │ ├── ScalarFunction │ │ │ │ ├── ExpandResults.php │ │ │ │ ├── ScalarResult.php │ │ │ │ └── UnpackResults.php │ │ │ ├── ScalarFunctionChain.php │ │ │ ├── Size.php │ │ │ ├── Slug.php │ │ │ ├── Split.php │ │ │ ├── Sprintf.php │ │ │ ├── StartsWith.php │ │ │ ├── StrPad.php │ │ │ ├── StrReplace.php │ │ │ ├── StringAfter.php │ │ │ ├── StringAfterLast.php │ │ │ ├── StringAggregate.php │ │ │ ├── StringBefore.php │ │ │ ├── StringBeforeLast.php │ │ │ ├── StringContainsAny.php │ │ │ ├── StringEqualsTo.php │ │ │ ├── StringFold.php │ │ │ ├── StringMatch.php │ │ │ ├── StringMatchAll.php │ │ │ ├── StringNormalize.php │ │ │ ├── StringStyle.php │ │ │ ├── StringTitle.php │ │ │ ├── StringWidth.php │ │ │ ├── StructureFunctions.php │ │ │ ├── StructureSelect.php │ │ │ ├── StyleConverter │ │ │ │ ├── ArrayKeyConverter.php │ │ │ │ └── StringStyles.php │ │ │ ├── Sum.php │ │ │ ├── ToDate.php │ │ │ ├── ToDateTime.php │ │ │ ├── ToLower.php │ │ │ ├── ToTimeZone.php │ │ │ ├── ToUpper.php │ │ │ ├── Trim.php │ │ │ ├── Trim │ │ │ │ └── Type.php │ │ │ ├── Truncate.php │ │ │ ├── Ulid.php │ │ │ ├── UnicodeLength.php │ │ │ ├── Uuid.php │ │ │ ├── When.php │ │ │ ├── WindowFunction.php │ │ │ ├── Wordwrap.php │ │ │ └── XPath.php │ │ ├── GroupBy.php │ │ ├── Hash │ │ │ ├── Algorithm.php │ │ │ ├── NativePHPHash.php │ │ │ └── PlainText.php │ │ ├── Join │ │ │ ├── Comparison.php │ │ │ ├── Comparison │ │ │ │ ├── All.php │ │ │ │ ├── Any.php │ │ │ │ ├── Equal.php │ │ │ │ └── Identical.php │ │ │ ├── Expression.php │ │ │ └── Join.php │ │ ├── Loader.php │ │ ├── Loader │ │ │ ├── ArrayLoader.php │ │ │ ├── BranchingLoader.php │ │ │ ├── CallbackLoader.php │ │ │ ├── Closure.php │ │ │ ├── FileLoader.php │ │ │ ├── MemoryLoader.php │ │ │ ├── OverridingLoader.php │ │ │ ├── RetryLoader.php │ │ │ ├── SchemaValidationLoader.php │ │ │ ├── StreamLoader.php │ │ │ ├── StreamLoader │ │ │ │ ├── Output.php │ │ │ │ └── Type.php │ │ │ └── TransformerLoader.php │ │ ├── Memory │ │ │ ├── ArrayMemory.php │ │ │ └── Memory.php │ │ ├── NativePHPRandomValueGenerator.php │ │ ├── Pipeline.php │ │ ├── Pipeline │ │ │ ├── BatchingByPipeline.php │ │ │ ├── BatchingPipeline.php │ │ │ ├── CachingPipeline.php │ │ │ ├── CollectingPipeline.php │ │ │ ├── ConstrainedPipeline.php │ │ │ ├── GroupByPipeline.php │ │ │ ├── HashJoin │ │ │ │ ├── Bucket.php │ │ │ │ └── HashTable.php │ │ │ ├── HashJoinPipeline.php │ │ │ ├── LinkedPipeline.php │ │ │ ├── OffsetPipeline.php │ │ │ ├── Optimizer.php │ │ │ ├── Optimizer │ │ │ │ ├── BatchSizeOptimization.php │ │ │ │ ├── LimitOptimization.php │ │ │ │ └── Optimization.php │ │ │ ├── OverridingPipeline.php │ │ │ ├── PartitioningPipeline.php │ │ │ ├── Pipes.php │ │ │ ├── SortingPipeline.php │ │ │ ├── SynchronousPipeline.php │ │ │ ├── VoidPipeline.php │ │ │ └── WindowFunctionPipeline.php │ │ ├── RandomValueGenerator.php │ │ ├── Retry │ │ │ ├── DelayFactory.php │ │ │ ├── DelayFactory │ │ │ │ ├── Exponential.php │ │ │ │ ├── Fixed.php │ │ │ │ ├── Fixed │ │ │ │ │ └── FixedMilliseconds.php │ │ │ │ ├── Jitter.php │ │ │ │ └── Linear.php │ │ │ ├── FailedRetry.php │ │ │ ├── RetriesRecord.php │ │ │ ├── RetryStrategy.php │ │ │ └── RetryStrategy │ │ │ │ ├── AnyThrowable.php │ │ │ │ └── OnExceptionTypes.php │ │ ├── Row.php │ │ ├── Row │ │ │ ├── CartesianProduct.php │ │ │ ├── Comparator.php │ │ │ ├── Comparator │ │ │ │ └── NativeComparator.php │ │ │ ├── Entries.php │ │ │ ├── Entry.php │ │ │ ├── Entry │ │ │ │ ├── BooleanEntry.php │ │ │ │ ├── DateEntry.php │ │ │ │ ├── DateTimeEntry.php │ │ │ │ ├── EntryRef.php │ │ │ │ ├── EnumEntry.php │ │ │ │ ├── FloatEntry.php │ │ │ │ ├── HTMLElementEntry.php │ │ │ │ ├── HTMLEntry.php │ │ │ │ ├── IntegerEntry.php │ │ │ │ ├── JsonEntry.php │ │ │ │ ├── ListEntry.php │ │ │ │ ├── MapEntry.php │ │ │ │ ├── StringEntry.php │ │ │ │ ├── StructureEntry.php │ │ │ │ ├── TimeEntry.php │ │ │ │ ├── UuidEntry.php │ │ │ │ ├── XMLElementEntry.php │ │ │ │ └── XMLEntry.php │ │ │ ├── EntryFactory.php │ │ │ ├── EntryReference.php │ │ │ ├── Formatter │ │ │ │ └── ASCIISchemaFormatter.php │ │ │ ├── Reference.php │ │ │ ├── References.php │ │ │ └── SortOrder.php │ │ ├── Rows.php │ │ ├── RowsFactory.php │ │ ├── Schema.php │ │ ├── Schema │ │ │ ├── Definition.php │ │ │ ├── Formatter │ │ │ │ ├── JsonSchemaFormatter.php │ │ │ │ ├── PHPFormatter │ │ │ │ │ ├── TypeFormatter.php │ │ │ │ │ └── ValueFormatter.php │ │ │ │ └── PHPSchemaFormatter.php │ │ │ ├── Metadata.php │ │ │ ├── SchemaFormatter.php │ │ │ └── Validator │ │ │ │ ├── EvolvingValidator.php │ │ │ │ ├── SelectiveValidator.php │ │ │ │ └── StrictValidator.php │ │ ├── SchemaValidator.php │ │ ├── Sort │ │ │ ├── ExternalSort.php │ │ │ ├── ExternalSort │ │ │ │ ├── Bucket.php │ │ │ │ ├── BucketRow.php │ │ │ │ ├── Buckets.php │ │ │ │ ├── BucketsCache.php │ │ │ │ ├── BucketsCache │ │ │ │ │ └── FilesystemBucketsCache.php │ │ │ │ └── RowsMinHeap.php │ │ │ ├── MemorySort.php │ │ │ ├── SortAlgorithms.php │ │ │ └── SortingAlgorithm.php │ │ ├── String │ │ │ └── StringStyles.php │ │ ├── Time │ │ │ ├── Duration.php │ │ │ ├── FakeSleep.php │ │ │ ├── Sleep.php │ │ │ └── SystemSleep.php │ │ ├── Transformation.php │ │ ├── Transformation │ │ │ ├── AddRowIndex.php │ │ │ ├── AddRowIndex │ │ │ │ └── StartFrom.php │ │ │ ├── BatchBy.php │ │ │ ├── BatchSize.php │ │ │ ├── Drop.php │ │ │ ├── Limit.php │ │ │ ├── MaskColumns.php │ │ │ └── Select.php │ │ ├── Transformations.php │ │ ├── Transformer.php │ │ ├── Transformer │ │ │ ├── AutoCastTransformer.php │ │ │ ├── CallbackRowTransformer.php │ │ │ ├── CrossJoinRowsTransformer.php │ │ │ ├── DropDuplicates │ │ │ │ └── Hashes.php │ │ │ ├── DropDuplicatesTransformer.php │ │ │ ├── DropEntriesTransformer.php │ │ │ ├── DropPartitionsTransformer.php │ │ │ ├── DuplicateRowTransformer.php │ │ │ ├── EntryNameStyleConverterTransformer.php │ │ │ ├── JoinEachRowsTransformer.php │ │ │ ├── LimitTransformer.php │ │ │ ├── OrderEntries │ │ │ │ ├── CombinedComparator.php │ │ │ │ ├── Comparator.php │ │ │ │ ├── NameComparator.php │ │ │ │ ├── Order.php │ │ │ │ ├── TypeComparator.php │ │ │ │ └── TypePriorities.php │ │ │ ├── OrderEntriesTransformer.php │ │ │ ├── Rename │ │ │ │ ├── RenameCaseEntryStrategy.php │ │ │ │ ├── RenameEntryStrategy.php │ │ │ │ └── RenameReplaceEntryStrategy.php │ │ │ ├── RenameAllCaseTransformer.php │ │ │ ├── RenameEachEntryTransformer.php │ │ │ ├── RenameEntryTransformer.php │ │ │ ├── RenameStrReplaceAllEntriesTransformer.php │ │ │ ├── ScalarFunctionFilterTransformer.php │ │ │ ├── ScalarFunctionTransformer.php │ │ │ ├── SelectEntriesTransformer.php │ │ │ ├── SerializeTransformer.php │ │ │ ├── StyleConverter │ │ │ │ └── ArrayKeyConverter.php │ │ │ ├── UnserializeTransformer.php │ │ │ └── UntilTransformer.php │ │ ├── Window.php │ │ └── WithEntry.php │ │ └── Serializer │ │ ├── Base64Serializer.php │ │ ├── CompressingSerializer.php │ │ ├── Exception │ │ └── SerializationException.php │ │ ├── NativePHPSerializer.php │ │ └── Serializer.php ├── extension │ └── pg-query-ext │ │ ├── Makefile │ │ ├── README.md │ │ ├── composer.json │ │ └── ext │ │ ├── config.m4 │ │ ├── pg_query.c │ │ ├── pg_query.stub.php │ │ ├── pg_query_arginfo.h │ │ └── php_pg_query.h ├── functions.php ├── lib │ ├── array-dot │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── composer.json │ │ └── src │ │ │ └── Flow │ │ │ └── ArrayDot │ │ │ ├── Exception │ │ │ ├── Exception.php │ │ │ └── InvalidPathException.php │ │ │ └── array_dot.php │ ├── azure-sdk │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── composer.json │ │ └── src │ │ │ └── Flow │ │ │ └── Azure │ │ │ └── SDK │ │ │ ├── AuthorizationFactory.php │ │ │ ├── AuthorizationFactory │ │ │ └── SharedKeyFactory.php │ │ │ ├── BlobService.php │ │ │ ├── BlobService │ │ │ ├── BlockBlob │ │ │ │ ├── Block.php │ │ │ │ ├── BlockList.php │ │ │ │ └── BlockState.php │ │ │ ├── Configuration.php │ │ │ ├── CopyBlob │ │ │ │ └── CopyBlobOptions.php │ │ │ ├── CreateContainer │ │ │ │ ├── CreateContainerOptions.php │ │ │ │ └── PublicAccess.php │ │ │ ├── DeleteBlob │ │ │ │ ├── DeleteBlobOptions.php │ │ │ │ ├── DeleteSnapshots.php │ │ │ │ └── DeleteType.php │ │ │ ├── DeleteContainer │ │ │ │ └── DeleteContainerOptions.php │ │ │ ├── GetBlob │ │ │ │ ├── BlobContent.php │ │ │ │ ├── GetBlobOptions.php │ │ │ │ └── Range.php │ │ │ ├── GetBlobProperties │ │ │ │ ├── BlobProperties.php │ │ │ │ └── GetBlobPropertiesOptions.php │ │ │ ├── GetBlockBlobBlockList │ │ │ │ ├── BlockListType.php │ │ │ │ └── GetBlockBlobBlockListOptions.php │ │ │ ├── GetContainerProperties │ │ │ │ ├── ContainerProperties.php │ │ │ │ └── GetContainerPropertiesOptions.php │ │ │ ├── ListBlobs │ │ │ │ ├── Blob.php │ │ │ │ ├── ListBlobOptions.php │ │ │ │ ├── OptionInclude.php │ │ │ │ └── OptionShowOnly.php │ │ │ ├── PutBlockBlob │ │ │ │ └── PutBlockBlobOptions.php │ │ │ ├── PutBlockBlobBlock │ │ │ │ └── PutBlockBlobBlockOptions.php │ │ │ ├── PutBlockBlobBlockList │ │ │ │ ├── PutBlockBlobBlockListOptions.php │ │ │ │ └── SimpleXMLSerializer.php │ │ │ └── URLFactory │ │ │ │ ├── AzureURLFactory.php │ │ │ │ └── AzuriteURLFactory.php │ │ │ ├── BlobServiceInterface.php │ │ │ ├── DSL │ │ │ └── functions.php │ │ │ ├── EndpointOptions.php │ │ │ ├── Endpoints │ │ │ └── UserAgentHeader.php │ │ │ ├── Exception │ │ │ ├── AzureException.php │ │ │ ├── Exception.php │ │ │ └── InvalidArgumentException.php │ │ │ ├── HttpFactory.php │ │ │ ├── Normalizer.php │ │ │ ├── Normalizer │ │ │ └── SimpleXMLNormalizer.php │ │ │ ├── RequestIdFactory.php │ │ │ ├── Serializer.php │ │ │ └── URLFactory.php │ ├── doctrine-dbal-bulk │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── composer.json │ │ └── src │ │ │ └── Flow │ │ │ └── Doctrine │ │ │ └── Bulk │ │ │ ├── Bulk.php │ │ │ ├── BulkData.php │ │ │ ├── Columns.php │ │ │ ├── DbalPlatform.php │ │ │ ├── Dialect │ │ │ ├── Dialect.php │ │ │ ├── MySQLDialect.php │ │ │ ├── MySQLInsertOptions.php │ │ │ ├── MySQLUpdateOptions.php │ │ │ ├── PostgreSQLDialect.php │ │ │ ├── PostgreSQLInsertOptions.php │ │ │ ├── PostgreSQLUpdateOptions.php │ │ │ ├── SqliteDialect.php │ │ │ ├── SqliteInsertOptions.php │ │ │ └── SqliteUpdateOptions.php │ │ │ ├── Exception │ │ │ └── RuntimeException.php │ │ │ ├── InsertOptions.php │ │ │ ├── QueryFactory.php │ │ │ ├── QueryFactory │ │ │ └── DbalQueryFactory.php │ │ │ ├── SQLParametersStyle.php │ │ │ ├── TableDefinition.php │ │ │ ├── TableDefinitions.php │ │ │ └── UpdateOptions.php │ ├── dremel │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── composer.json │ │ └── src │ │ │ └── Flow │ │ │ └── Dremel │ │ │ └── Dremel.php │ ├── filesystem │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── composer.json │ │ └── src │ │ │ └── Flow │ │ │ └── Filesystem │ │ │ ├── DSL │ │ │ └── functions.php │ │ │ ├── DestinationStream.php │ │ │ ├── Exception │ │ │ ├── Exception.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidSchemeException.php │ │ │ ├── MissingOptionException.php │ │ │ └── RuntimeException.php │ │ │ ├── FileStatus.php │ │ │ ├── Filesystem.php │ │ │ ├── FilesystemTable.php │ │ │ ├── Local │ │ │ ├── Memory │ │ │ │ ├── Memory.php │ │ │ │ └── MemoryStream.php │ │ │ ├── MemoryFilesystem.php │ │ │ ├── NativeLocalFilesystem.php │ │ │ ├── StdOut │ │ │ │ └── StdOutDestinationStream.php │ │ │ ├── StdOutFilesystem.php │ │ │ └── StreamFilter │ │ │ │ └── Intercept.php │ │ │ ├── Partition.php │ │ │ ├── Partitions.php │ │ │ ├── Path.php │ │ │ ├── Path │ │ │ ├── Filter.php │ │ │ ├── Filter │ │ │ │ ├── Filters.php │ │ │ │ ├── KeepAll.php │ │ │ │ └── OnlyFiles.php │ │ │ ├── Option.php │ │ │ ├── Option │ │ │ │ └── ContentType.php │ │ │ ├── Options.php │ │ │ ├── UnixPath.php │ │ │ └── WindowsPath.php │ │ │ ├── Paths.php │ │ │ ├── Protocol.php │ │ │ ├── SizeUnits.php │ │ │ ├── SourceStream.php │ │ │ ├── Stream.php │ │ │ └── Stream │ │ │ ├── Block.php │ │ │ ├── Block │ │ │ ├── BlockVoidLifecycle.php │ │ │ ├── NativeLocalFileBlocksFactory.php │ │ │ └── NativeLocalStreamBlock.php │ │ │ ├── BlockFactory.php │ │ │ ├── BlockLifecycle.php │ │ │ ├── Blocks.php │ │ │ ├── MemorySourceStream.php │ │ │ ├── Mode.php │ │ │ ├── NativeLocalDestinationStream.php │ │ │ ├── NativeLocalSourceStream.php │ │ │ ├── ResourceContext.php │ │ │ ├── StreamWrapper.php │ │ │ ├── VoidStream.php │ │ │ └── VoidStreamWrapper.php │ ├── parquet-viewer │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── bin │ │ │ └── parquet.php │ │ ├── composer.json │ │ └── src │ │ │ └── Flow │ │ │ └── ParquetViewer │ │ │ ├── Command │ │ │ ├── ReadDDLCommand.php │ │ │ ├── ReadDataCommand.php │ │ │ └── ReadMetadataCommand.php │ │ │ └── Parquet.php │ ├── parquet │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── composer.json │ │ ├── resources │ │ │ └── python │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── generators │ │ │ │ ├── lists.py │ │ │ │ ├── maps.py │ │ │ │ ├── orders.py │ │ │ │ ├── primitives.py │ │ │ │ └── structs.py │ │ │ │ ├── output │ │ │ │ └── .gitkeep │ │ │ │ └── requirements.txt │ │ └── src │ │ │ ├── Flow │ │ │ └── Parquet │ │ │ │ ├── BinaryReader.php │ │ │ │ ├── BinaryReader │ │ │ │ ├── BinaryBufferReader.php │ │ │ │ └── Bytes.php │ │ │ │ ├── BinaryWriter.php │ │ │ │ ├── BinaryWriter │ │ │ │ └── BinaryBufferWriter.php │ │ │ │ ├── ByteOrder.php │ │ │ │ ├── Consts.php │ │ │ │ ├── Data │ │ │ │ ├── BitWidth.php │ │ │ │ ├── BytesConverter.php │ │ │ │ ├── DeltaBinaryPackedDecoder.php │ │ │ │ ├── DeltaBinaryPackedEncoder.php │ │ │ │ ├── DeltaCalculator.php │ │ │ │ ├── DeltaHeader.php │ │ │ │ ├── PlainValueUnpacker.php │ │ │ │ ├── PlainValuesPacker.php │ │ │ │ ├── RLEBitPackedHybrid.php │ │ │ │ └── ZigZag.php │ │ │ │ ├── DataSize.php │ │ │ │ ├── Dremel │ │ │ │ ├── ColumnData │ │ │ │ │ ├── DefinitionConverter.php │ │ │ │ │ ├── FlatValue.php │ │ │ │ │ ├── NullLevel.php │ │ │ │ │ ├── ReadFlatColumnValues.php │ │ │ │ │ ├── Stack.php │ │ │ │ │ └── WriteFlatColumnValues.php │ │ │ │ ├── DremelAssembler.php │ │ │ │ ├── DremelShredder.php │ │ │ │ ├── ReadColumnData.php │ │ │ │ ├── RowGroupContainer.php │ │ │ │ ├── Statistics │ │ │ │ │ └── Comparator.php │ │ │ │ ├── Validator.php │ │ │ │ ├── Validator │ │ │ │ │ ├── ColumnDataValidator.php │ │ │ │ │ └── DisabledValidator.php │ │ │ │ └── WriteColumnData.php │ │ │ │ ├── Exception │ │ │ │ ├── DataConversionException.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── OutOfBoundsException.php │ │ │ │ ├── RuntimeException.php │ │ │ │ └── ValidationException.php │ │ │ │ ├── Option.php │ │ │ │ ├── Options.php │ │ │ │ ├── ParquetFile.php │ │ │ │ ├── ParquetFile │ │ │ │ ├── Compressions.php │ │ │ │ ├── Data │ │ │ │ │ ├── Codec.php │ │ │ │ │ ├── Converter.php │ │ │ │ │ ├── Converter │ │ │ │ │ │ ├── Int32DateConverter.php │ │ │ │ │ │ ├── Int32DateTimeConverter.php │ │ │ │ │ │ ├── Int64DateTimeConverter.php │ │ │ │ │ │ ├── Int96DateTimeConverter.php │ │ │ │ │ │ ├── JsonConverter.php │ │ │ │ │ │ ├── TimeConverter.php │ │ │ │ │ │ └── UuidConverter.php │ │ │ │ │ ├── DataConverter.php │ │ │ │ │ └── ObjectToString.php │ │ │ │ ├── Encodings.php │ │ │ │ ├── Metadata.php │ │ │ │ ├── Page │ │ │ │ │ ├── ColumnData.php │ │ │ │ │ ├── ColumnPageHeader.php │ │ │ │ │ ├── Dictionary.php │ │ │ │ │ ├── Header │ │ │ │ │ │ ├── DataPageHeader.php │ │ │ │ │ │ ├── DataPageHeaderV2.php │ │ │ │ │ │ ├── DictionaryPageHeader.php │ │ │ │ │ │ └── Type.php │ │ │ │ │ └── PageHeader.php │ │ │ │ ├── RowGroup.php │ │ │ │ ├── RowGroup │ │ │ │ │ ├── ColumnChunk.php │ │ │ │ │ ├── FlowColumnChunk.php │ │ │ │ │ └── StatisticsReader.php │ │ │ │ ├── RowGroups.php │ │ │ │ ├── Schema.php │ │ │ │ ├── Schema │ │ │ │ │ ├── Column.php │ │ │ │ │ ├── ColumnPrimitiveType.php │ │ │ │ │ ├── ConvertedType.php │ │ │ │ │ ├── FlatColumn.php │ │ │ │ │ ├── ListElement.php │ │ │ │ │ ├── LogicalType.php │ │ │ │ │ ├── LogicalType │ │ │ │ │ │ ├── Decimal.php │ │ │ │ │ │ ├── Time.php │ │ │ │ │ │ └── Timestamp.php │ │ │ │ │ ├── MapKey.php │ │ │ │ │ ├── MapValue.php │ │ │ │ │ ├── NestedColumn.php │ │ │ │ │ ├── PhysicalType.php │ │ │ │ │ ├── Repetition.php │ │ │ │ │ ├── Repetitions.php │ │ │ │ │ └── TimeUnit.php │ │ │ │ └── Statistics.php │ │ │ │ ├── Reader.php │ │ │ │ ├── Reader │ │ │ │ ├── ColumnChunkReader.php │ │ │ │ ├── ColumnChunkViewer.php │ │ │ │ ├── ColumnDataDecoder.php │ │ │ │ └── PageReader.php │ │ │ │ ├── Resources │ │ │ │ └── Thrift │ │ │ │ │ ├── parquet.thrift │ │ │ │ │ └── parquet_clean.thrift │ │ │ │ ├── Thrift │ │ │ │ ├── CompactProtocol.php │ │ │ │ ├── MemoryBuffer.php │ │ │ │ ├── PhpFileStream.php │ │ │ │ └── Transport.php │ │ │ │ ├── ThriftModel │ │ │ │ ├── AesGcmCtrV1.php │ │ │ │ ├── AesGcmV1.php │ │ │ │ ├── BloomFilterAlgorithm.php │ │ │ │ ├── BloomFilterCompression.php │ │ │ │ ├── BloomFilterHash.php │ │ │ │ ├── BloomFilterHeader.php │ │ │ │ ├── BoundaryOrder.php │ │ │ │ ├── BsonType.php │ │ │ │ ├── ColumnChunk.php │ │ │ │ ├── ColumnCryptoMetaData.php │ │ │ │ ├── ColumnIndex.php │ │ │ │ ├── ColumnMetaData.php │ │ │ │ ├── ColumnOrder.php │ │ │ │ ├── CompressionCodec.php │ │ │ │ ├── ConvertedType.php │ │ │ │ ├── DataPageHeader.php │ │ │ │ ├── DataPageHeaderV2.php │ │ │ │ ├── DateType.php │ │ │ │ ├── DecimalType.php │ │ │ │ ├── DictionaryPageHeader.php │ │ │ │ ├── Encoding.php │ │ │ │ ├── EncryptionAlgorithm.php │ │ │ │ ├── EncryptionWithColumnKey.php │ │ │ │ ├── EncryptionWithFooterKey.php │ │ │ │ ├── EnumType.php │ │ │ │ ├── FieldRepetitionType.php │ │ │ │ ├── FileCryptoMetaData.php │ │ │ │ ├── FileMetaData.php │ │ │ │ ├── Float16Type.php │ │ │ │ ├── IndexPageHeader.php │ │ │ │ ├── IntType.php │ │ │ │ ├── JsonType.php │ │ │ │ ├── KeyValue.php │ │ │ │ ├── ListType.php │ │ │ │ ├── LogicalType.php │ │ │ │ ├── MapType.php │ │ │ │ ├── MicroSeconds.php │ │ │ │ ├── MilliSeconds.php │ │ │ │ ├── NanoSeconds.php │ │ │ │ ├── NullType.php │ │ │ │ ├── OffsetIndex.php │ │ │ │ ├── PageEncodingStats.php │ │ │ │ ├── PageHeader.php │ │ │ │ ├── PageLocation.php │ │ │ │ ├── PageType.php │ │ │ │ ├── RowGroup.php │ │ │ │ ├── SchemaElement.php │ │ │ │ ├── SizeStatistics.php │ │ │ │ ├── SortingColumn.php │ │ │ │ ├── SplitBlockAlgorithm.php │ │ │ │ ├── Statistics.php │ │ │ │ ├── StringType.php │ │ │ │ ├── TimeType.php │ │ │ │ ├── TimeUnit.php │ │ │ │ ├── TimestampType.php │ │ │ │ ├── Type.php │ │ │ │ ├── TypeDefinedOrder.php │ │ │ │ ├── UUIDType.php │ │ │ │ ├── Uncompressed.php │ │ │ │ └── XxHash.php │ │ │ │ ├── Writer.php │ │ │ │ ├── Writer │ │ │ │ ├── ColumnChunkBuilder.php │ │ │ │ ├── ColumnChunkBuilder │ │ │ │ │ ├── DeltaBinaryPackedColumnChunkBuilder.php │ │ │ │ │ ├── NestedColumnChunkBuilder.php │ │ │ │ │ ├── PlainFlatColumnChunkBuilder.php │ │ │ │ │ └── RLEDictionaryChunkBuilder.php │ │ │ │ ├── ColumnChunkBuilderFactory.php │ │ │ │ ├── ColumnChunkBuilders.php │ │ │ │ ├── ColumnChunkContainer.php │ │ │ │ ├── PageBuilder │ │ │ │ │ ├── Dictionary.php │ │ │ │ │ ├── DictionaryBuilder.php │ │ │ │ │ ├── DictionaryBuilder │ │ │ │ │ │ ├── FloatDictionaryBuilder.php │ │ │ │ │ │ ├── ObjectDictionaryBuilder.php │ │ │ │ │ │ └── ScalarDictionaryBuilder.php │ │ │ │ │ └── RLEBitPackedPacker.php │ │ │ │ ├── PageContainer.php │ │ │ │ ├── PageContainers.php │ │ │ │ ├── RowGroupBuilder.php │ │ │ │ ├── StatisticsCounter.php │ │ │ │ └── ValueStorage │ │ │ │ │ ├── BooleanValueStorage.php │ │ │ │ │ ├── BufferValueStorage.php │ │ │ │ │ ├── DeltaBinaryPackedValueStorage.php │ │ │ │ │ └── ValueStorage.php │ │ │ │ └── functions.php │ │ │ └── stubs.php │ ├── pg-query │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── composer.json │ │ └── src │ │ │ ├── Flow │ │ │ └── PgQuery │ │ │ │ ├── AST │ │ │ │ ├── NodeVisitor.php │ │ │ │ ├── Nodes │ │ │ │ │ ├── Column.php │ │ │ │ │ ├── FunctionCall.php │ │ │ │ │ └── Table.php │ │ │ │ ├── Traverser.php │ │ │ │ └── Visitors │ │ │ │ │ ├── ColumnRefCollector.php │ │ │ │ │ ├── FuncCallCollector.php │ │ │ │ │ └── RangeVarCollector.php │ │ │ │ ├── DSL │ │ │ │ └── functions.php │ │ │ │ ├── DeparseOptions.php │ │ │ │ ├── Exception │ │ │ │ ├── ExtensionNotLoadedException.php │ │ │ │ └── ParserException.php │ │ │ │ ├── NamedParameterNormalizer.php │ │ │ │ ├── ParsedQuery.php │ │ │ │ ├── Parser.php │ │ │ │ └── Protobuf │ │ │ │ ├── AST │ │ │ │ ├── A_ArrayExpr.php │ │ │ │ ├── A_Const.php │ │ │ │ ├── A_Expr.php │ │ │ │ ├── A_Expr_Kind.php │ │ │ │ ├── A_Indices.php │ │ │ │ ├── A_Indirection.php │ │ │ │ ├── A_Star.php │ │ │ │ ├── AccessPriv.php │ │ │ │ ├── AggSplit.php │ │ │ │ ├── AggStrategy.php │ │ │ │ ├── Aggref.php │ │ │ │ ├── Alias.php │ │ │ │ ├── AlterCollationStmt.php │ │ │ │ ├── AlterDatabaseRefreshCollStmt.php │ │ │ │ ├── AlterDatabaseSetStmt.php │ │ │ │ ├── AlterDatabaseStmt.php │ │ │ │ ├── AlterDefaultPrivilegesStmt.php │ │ │ │ ├── AlterDomainStmt.php │ │ │ │ ├── AlterEnumStmt.php │ │ │ │ ├── AlterEventTrigStmt.php │ │ │ │ ├── AlterExtensionContentsStmt.php │ │ │ │ ├── AlterExtensionStmt.php │ │ │ │ ├── AlterFdwStmt.php │ │ │ │ ├── AlterForeignServerStmt.php │ │ │ │ ├── AlterFunctionStmt.php │ │ │ │ ├── AlterObjectDependsStmt.php │ │ │ │ ├── AlterObjectSchemaStmt.php │ │ │ │ ├── AlterOpFamilyStmt.php │ │ │ │ ├── AlterOperatorStmt.php │ │ │ │ ├── AlterOwnerStmt.php │ │ │ │ ├── AlterPolicyStmt.php │ │ │ │ ├── AlterPublicationAction.php │ │ │ │ ├── AlterPublicationStmt.php │ │ │ │ ├── AlterRoleSetStmt.php │ │ │ │ ├── AlterRoleStmt.php │ │ │ │ ├── AlterSeqStmt.php │ │ │ │ ├── AlterStatsStmt.php │ │ │ │ ├── AlterSubscriptionStmt.php │ │ │ │ ├── AlterSubscriptionType.php │ │ │ │ ├── AlterSystemStmt.php │ │ │ │ ├── AlterTSConfigType.php │ │ │ │ ├── AlterTSConfigurationStmt.php │ │ │ │ ├── AlterTSDictionaryStmt.php │ │ │ │ ├── AlterTableCmd.php │ │ │ │ ├── AlterTableMoveAllStmt.php │ │ │ │ ├── AlterTableSpaceOptionsStmt.php │ │ │ │ ├── AlterTableStmt.php │ │ │ │ ├── AlterTableType.php │ │ │ │ ├── AlterTypeStmt.php │ │ │ │ ├── AlterUserMappingStmt.php │ │ │ │ ├── AlternativeSubPlan.php │ │ │ │ ├── ArrayCoerceExpr.php │ │ │ │ ├── ArrayExpr.php │ │ │ │ ├── BitString.php │ │ │ │ ├── BoolExpr.php │ │ │ │ ├── BoolExprType.php │ │ │ │ ├── BoolTestType.php │ │ │ │ ├── Boolean.php │ │ │ │ ├── BooleanTest.php │ │ │ │ ├── CTECycleClause.php │ │ │ │ ├── CTEMaterialize.php │ │ │ │ ├── CTESearchClause.php │ │ │ │ ├── CallContext.php │ │ │ │ ├── CallStmt.php │ │ │ │ ├── CaseExpr.php │ │ │ │ ├── CaseTestExpr.php │ │ │ │ ├── CaseWhen.php │ │ │ │ ├── CheckPointStmt.php │ │ │ │ ├── ClosePortalStmt.php │ │ │ │ ├── ClusterStmt.php │ │ │ │ ├── CmdType.php │ │ │ │ ├── CoalesceExpr.php │ │ │ │ ├── CoerceToDomain.php │ │ │ │ ├── CoerceToDomainValue.php │ │ │ │ ├── CoerceViaIO.php │ │ │ │ ├── CoercionContext.php │ │ │ │ ├── CoercionForm.php │ │ │ │ ├── CollateClause.php │ │ │ │ ├── CollateExpr.php │ │ │ │ ├── ColumnDef.php │ │ │ │ ├── ColumnRef.php │ │ │ │ ├── CommentStmt.php │ │ │ │ ├── CommonTableExpr.php │ │ │ │ ├── CompositeTypeStmt.php │ │ │ │ ├── ConstrType.php │ │ │ │ ├── Constraint.php │ │ │ │ ├── ConstraintsSetStmt.php │ │ │ │ ├── ConvertRowtypeExpr.php │ │ │ │ ├── CopyStmt.php │ │ │ │ ├── CreateAmStmt.php │ │ │ │ ├── CreateCastStmt.php │ │ │ │ ├── CreateConversionStmt.php │ │ │ │ ├── CreateDomainStmt.php │ │ │ │ ├── CreateEnumStmt.php │ │ │ │ ├── CreateEventTrigStmt.php │ │ │ │ ├── CreateExtensionStmt.php │ │ │ │ ├── CreateFdwStmt.php │ │ │ │ ├── CreateForeignServerStmt.php │ │ │ │ ├── CreateForeignTableStmt.php │ │ │ │ ├── CreateFunctionStmt.php │ │ │ │ ├── CreateOpClassItem.php │ │ │ │ ├── CreateOpClassStmt.php │ │ │ │ ├── CreateOpFamilyStmt.php │ │ │ │ ├── CreatePLangStmt.php │ │ │ │ ├── CreatePolicyStmt.php │ │ │ │ ├── CreatePublicationStmt.php │ │ │ │ ├── CreateRangeStmt.php │ │ │ │ ├── CreateRoleStmt.php │ │ │ │ ├── CreateSchemaStmt.php │ │ │ │ ├── CreateSeqStmt.php │ │ │ │ ├── CreateStatsStmt.php │ │ │ │ ├── CreateStmt.php │ │ │ │ ├── CreateSubscriptionStmt.php │ │ │ │ ├── CreateTableAsStmt.php │ │ │ │ ├── CreateTableSpaceStmt.php │ │ │ │ ├── CreateTransformStmt.php │ │ │ │ ├── CreateTrigStmt.php │ │ │ │ ├── CreateUserMappingStmt.php │ │ │ │ ├── CreatedbStmt.php │ │ │ │ ├── CurrentOfExpr.php │ │ │ │ ├── DeallocateStmt.php │ │ │ │ ├── DeclareCursorStmt.php │ │ │ │ ├── DefElem.php │ │ │ │ ├── DefElemAction.php │ │ │ │ ├── DefineStmt.php │ │ │ │ ├── DeleteStmt.php │ │ │ │ ├── DiscardMode.php │ │ │ │ ├── DiscardStmt.php │ │ │ │ ├── DistinctExpr.php │ │ │ │ ├── DoStmt.php │ │ │ │ ├── DropBehavior.php │ │ │ │ ├── DropOwnedStmt.php │ │ │ │ ├── DropRoleStmt.php │ │ │ │ ├── DropStmt.php │ │ │ │ ├── DropSubscriptionStmt.php │ │ │ │ ├── DropTableSpaceStmt.php │ │ │ │ ├── DropUserMappingStmt.php │ │ │ │ ├── DropdbStmt.php │ │ │ │ ├── ExecuteStmt.php │ │ │ │ ├── ExplainStmt.php │ │ │ │ ├── FetchDirection.php │ │ │ │ ├── FetchStmt.php │ │ │ │ ├── FieldSelect.php │ │ │ │ ├── FieldStore.php │ │ │ │ ├── FromExpr.php │ │ │ │ ├── FuncCall.php │ │ │ │ ├── FuncExpr.php │ │ │ │ ├── FunctionParameter.php │ │ │ │ ├── FunctionParameterMode.php │ │ │ │ ├── GrantRoleStmt.php │ │ │ │ ├── GrantStmt.php │ │ │ │ ├── GrantTargetType.php │ │ │ │ ├── GroupingFunc.php │ │ │ │ ├── GroupingSet.php │ │ │ │ ├── GroupingSetKind.php │ │ │ │ ├── ImportForeignSchemaStmt.php │ │ │ │ ├── ImportForeignSchemaType.php │ │ │ │ ├── IndexElem.php │ │ │ │ ├── IndexStmt.php │ │ │ │ ├── InferClause.php │ │ │ │ ├── InferenceElem.php │ │ │ │ ├── InlineCodeBlock.php │ │ │ │ ├── InsertStmt.php │ │ │ │ ├── IntList.php │ │ │ │ ├── Integer.php │ │ │ │ ├── IntoClause.php │ │ │ │ ├── JoinExpr.php │ │ │ │ ├── JoinType.php │ │ │ │ ├── JsonAggConstructor.php │ │ │ │ ├── JsonArgument.php │ │ │ │ ├── JsonArrayAgg.php │ │ │ │ ├── JsonArrayConstructor.php │ │ │ │ ├── JsonArrayQueryConstructor.php │ │ │ │ ├── JsonBehavior.php │ │ │ │ ├── JsonBehaviorType.php │ │ │ │ ├── JsonConstructorExpr.php │ │ │ │ ├── JsonConstructorType.php │ │ │ │ ├── JsonEncoding.php │ │ │ │ ├── JsonExpr.php │ │ │ │ ├── JsonExprOp.php │ │ │ │ ├── JsonFormat.php │ │ │ │ ├── JsonFormatType.php │ │ │ │ ├── JsonFuncExpr.php │ │ │ │ ├── JsonIsPredicate.php │ │ │ │ ├── JsonKeyValue.php │ │ │ │ ├── JsonObjectAgg.php │ │ │ │ ├── JsonObjectConstructor.php │ │ │ │ ├── JsonOutput.php │ │ │ │ ├── JsonParseExpr.php │ │ │ │ ├── JsonQuotes.php │ │ │ │ ├── JsonReturning.php │ │ │ │ ├── JsonScalarExpr.php │ │ │ │ ├── JsonSerializeExpr.php │ │ │ │ ├── JsonTable.php │ │ │ │ ├── JsonTableColumn.php │ │ │ │ ├── JsonTableColumnType.php │ │ │ │ ├── JsonTablePath.php │ │ │ │ ├── JsonTablePathScan.php │ │ │ │ ├── JsonTablePathSpec.php │ │ │ │ ├── JsonTableSiblingJoin.php │ │ │ │ ├── JsonValueExpr.php │ │ │ │ ├── JsonValueType.php │ │ │ │ ├── JsonWrapper.php │ │ │ │ ├── KeywordKind.php │ │ │ │ ├── LimitOption.php │ │ │ │ ├── ListenStmt.php │ │ │ │ ├── LoadStmt.php │ │ │ │ ├── LockClauseStrength.php │ │ │ │ ├── LockStmt.php │ │ │ │ ├── LockTupleMode.php │ │ │ │ ├── LockWaitPolicy.php │ │ │ │ ├── LockingClause.php │ │ │ │ ├── MergeAction.php │ │ │ │ ├── MergeMatchKind.php │ │ │ │ ├── MergeStmt.php │ │ │ │ ├── MergeSupportFunc.php │ │ │ │ ├── MergeWhenClause.php │ │ │ │ ├── MinMaxExpr.php │ │ │ │ ├── MinMaxOp.php │ │ │ │ ├── MultiAssignRef.php │ │ │ │ ├── NamedArgExpr.php │ │ │ │ ├── NextValueExpr.php │ │ │ │ ├── Node.php │ │ │ │ ├── NotifyStmt.php │ │ │ │ ├── NullIfExpr.php │ │ │ │ ├── NullTest.php │ │ │ │ ├── NullTestType.php │ │ │ │ ├── ObjectType.php │ │ │ │ ├── ObjectWithArgs.php │ │ │ │ ├── OidList.php │ │ │ │ ├── OnCommitAction.php │ │ │ │ ├── OnConflictAction.php │ │ │ │ ├── OnConflictClause.php │ │ │ │ ├── OnConflictExpr.php │ │ │ │ ├── OpExpr.php │ │ │ │ ├── OverridingKind.php │ │ │ │ ├── PBFloat.php │ │ │ │ ├── PBList.php │ │ │ │ ├── PBString.php │ │ │ │ ├── PBVar.php │ │ │ │ ├── PLAssignStmt.php │ │ │ │ ├── Param.php │ │ │ │ ├── ParamKind.php │ │ │ │ ├── ParamRef.php │ │ │ │ ├── ParseResult.php │ │ │ │ ├── PartitionBoundSpec.php │ │ │ │ ├── PartitionCmd.php │ │ │ │ ├── PartitionElem.php │ │ │ │ ├── PartitionRangeDatum.php │ │ │ │ ├── PartitionRangeDatumKind.php │ │ │ │ ├── PartitionSpec.php │ │ │ │ ├── PartitionStrategy.php │ │ │ │ ├── PrepareStmt.php │ │ │ │ ├── PublicationObjSpec.php │ │ │ │ ├── PublicationObjSpecType.php │ │ │ │ ├── PublicationTable.php │ │ │ │ ├── Query.php │ │ │ │ ├── QuerySource.php │ │ │ │ ├── RTEKind.php │ │ │ │ ├── RTEPermissionInfo.php │ │ │ │ ├── RangeFunction.php │ │ │ │ ├── RangeSubselect.php │ │ │ │ ├── RangeTableFunc.php │ │ │ │ ├── RangeTableFuncCol.php │ │ │ │ ├── RangeTableSample.php │ │ │ │ ├── RangeTblEntry.php │ │ │ │ ├── RangeTblFunction.php │ │ │ │ ├── RangeTblRef.php │ │ │ │ ├── RangeVar.php │ │ │ │ ├── RawStmt.php │ │ │ │ ├── ReassignOwnedStmt.php │ │ │ │ ├── RefreshMatViewStmt.php │ │ │ │ ├── ReindexObjectType.php │ │ │ │ ├── ReindexStmt.php │ │ │ │ ├── RelabelType.php │ │ │ │ ├── RenameStmt.php │ │ │ │ ├── ReplicaIdentityStmt.php │ │ │ │ ├── ResTarget.php │ │ │ │ ├── ReturnStmt.php │ │ │ │ ├── RoleSpec.php │ │ │ │ ├── RoleSpecType.php │ │ │ │ ├── RoleStmtType.php │ │ │ │ ├── RowCompareExpr.php │ │ │ │ ├── RowCompareType.php │ │ │ │ ├── RowExpr.php │ │ │ │ ├── RowMarkClause.php │ │ │ │ ├── RuleStmt.php │ │ │ │ ├── SQLValueFunction.php │ │ │ │ ├── SQLValueFunctionOp.php │ │ │ │ ├── ScalarArrayOpExpr.php │ │ │ │ ├── ScanResult.php │ │ │ │ ├── ScanToken.php │ │ │ │ ├── SecLabelStmt.php │ │ │ │ ├── SelectStmt.php │ │ │ │ ├── SetOpCmd.php │ │ │ │ ├── SetOpStrategy.php │ │ │ │ ├── SetOperation.php │ │ │ │ ├── SetOperationStmt.php │ │ │ │ ├── SetQuantifier.php │ │ │ │ ├── SetToDefault.php │ │ │ │ ├── SinglePartitionSpec.php │ │ │ │ ├── SortBy.php │ │ │ │ ├── SortByDir.php │ │ │ │ ├── SortByNulls.php │ │ │ │ ├── SortGroupClause.php │ │ │ │ ├── StatsElem.php │ │ │ │ ├── SubLink.php │ │ │ │ ├── SubLinkType.php │ │ │ │ ├── SubPlan.php │ │ │ │ ├── SubscriptingRef.php │ │ │ │ ├── TableFunc.php │ │ │ │ ├── TableFuncType.php │ │ │ │ ├── TableLikeClause.php │ │ │ │ ├── TableLikeOption.php │ │ │ │ ├── TableSampleClause.php │ │ │ │ ├── TargetEntry.php │ │ │ │ ├── Token.php │ │ │ │ ├── TransactionStmt.php │ │ │ │ ├── TransactionStmtKind.php │ │ │ │ ├── TriggerTransition.php │ │ │ │ ├── TruncateStmt.php │ │ │ │ ├── TypeCast.php │ │ │ │ ├── TypeName.php │ │ │ │ ├── UnlistenStmt.php │ │ │ │ ├── UpdateStmt.php │ │ │ │ ├── VacuumRelation.php │ │ │ │ ├── VacuumStmt.php │ │ │ │ ├── VariableSetKind.php │ │ │ │ ├── VariableSetStmt.php │ │ │ │ ├── VariableShowStmt.php │ │ │ │ ├── ViewCheckOption.php │ │ │ │ ├── ViewStmt.php │ │ │ │ ├── WCOKind.php │ │ │ │ ├── WindowClause.php │ │ │ │ ├── WindowDef.php │ │ │ │ ├── WindowFunc.php │ │ │ │ ├── WindowFuncRunCondition.php │ │ │ │ ├── WithCheckOption.php │ │ │ │ ├── WithClause.php │ │ │ │ ├── XmlExpr.php │ │ │ │ ├── XmlExprOp.php │ │ │ │ ├── XmlOptionType.php │ │ │ │ └── XmlSerialize.php │ │ │ │ └── Metadata │ │ │ │ └── PgQuery.php │ │ │ └── stubs.php │ ├── snappy │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── composer.json │ │ ├── polyfill.php │ │ └── src │ │ │ └── Flow │ │ │ └── Snappy │ │ │ ├── Snappy.php │ │ │ ├── SnappyCompressor.php │ │ │ └── SnappyDecompressor.php │ └── types │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── composer.json │ │ └── src │ │ └── Flow │ │ └── Types │ │ ├── DSL │ │ └── functions.php │ │ ├── Exception │ │ ├── CastingException.php │ │ ├── Exception.php │ │ ├── InvalidArgumentException.php │ │ ├── InvalidTypeException.php │ │ └── RuntimeException.php │ │ ├── PHPStan │ │ └── StructureTypeReturnTypeExtension.php │ │ ├── Type.php │ │ ├── Type │ │ ├── ArrayContentDetector.php │ │ ├── AutoCaster.php │ │ ├── Comparator.php │ │ ├── Comparison │ │ │ └── Operator.php │ │ ├── Logical │ │ │ ├── ClassStringType.php │ │ │ ├── DateTimeType.php │ │ │ ├── DateType.php │ │ │ ├── HTMLElementType.php │ │ │ ├── HTMLType.php │ │ │ ├── InstanceOfType.php │ │ │ ├── InstanceOfTypeNarrower.php │ │ │ ├── JsonType.php │ │ │ ├── ListType.php │ │ │ ├── LiteralType.php │ │ │ ├── MapType.php │ │ │ ├── NonEmptyStringType.php │ │ │ ├── NumericStringType.php │ │ │ ├── OptionalType.php │ │ │ ├── PositiveIntegerType.php │ │ │ ├── ScalarType.php │ │ │ ├── StructureType.php │ │ │ ├── TimeType.php │ │ │ ├── TimeZoneType.php │ │ │ ├── UuidType.php │ │ │ ├── XML │ │ │ │ └── XMLConverter.php │ │ │ ├── XMLElementType.php │ │ │ └── XMLType.php │ │ ├── Native │ │ │ ├── ArrayType.php │ │ │ ├── BooleanType.php │ │ │ ├── CallableType.php │ │ │ ├── EnumType.php │ │ │ ├── FloatType.php │ │ │ ├── IntegerType.php │ │ │ ├── IntersectionType.php │ │ │ ├── MixedType.php │ │ │ ├── NullType.php │ │ │ ├── ObjectType.php │ │ │ ├── ResourceType.php │ │ │ ├── String │ │ │ │ └── StringTypeNarrower.php │ │ │ ├── StringType.php │ │ │ └── UnionType.php │ │ ├── TypeDetector.php │ │ ├── TypeFactory.php │ │ ├── TypeNarrower.php │ │ ├── Types.php │ │ └── ValueComparator.php │ │ └── Value │ │ └── Uuid.php └── tools │ ├── documentation │ ├── README.md │ ├── src │ │ └── Flow │ │ │ └── Documentation │ │ │ ├── FunctionCollector.php │ │ │ ├── FunctionsExtractor.php │ │ │ ├── Manifest.php │ │ │ ├── Manifest │ │ │ ├── Package.php │ │ │ └── Type.php │ │ │ ├── MethodCollector.php │ │ │ ├── MethodsExtractor.php │ │ │ └── Models │ │ │ ├── AttributeModel.php │ │ │ ├── AttributesModel.php │ │ │ ├── FunctionModel.php │ │ │ ├── MethodModel.php │ │ │ ├── ParameterModel.php │ │ │ ├── ParametersModel.php │ │ │ ├── TypeModel.php │ │ │ └── TypesModel.php │ └── tests │ │ └── Flow │ │ └── Documentation │ │ └── Tests │ │ └── Integration │ │ ├── Double │ │ └── ParameterClass.php │ │ ├── FunctionsExtractorTest.php │ │ ├── ManifestTest.php │ │ ├── TestAttribute.php │ │ └── functions.php │ └── homebrew │ ├── .github │ └── workflows │ │ └── readonly.yaml │ ├── CONTRIBUTING.md │ ├── Formula │ └── flow-php.rb │ ├── LICENSE │ └── README.md ├── terraform └── cloudflare │ ├── .gitignore │ ├── README.md │ ├── dns.tf │ ├── main.tf │ ├── notifications.tf │ ├── outputs.tf │ ├── provider.tf │ ├── r2.tf │ ├── turnstile.tf │ ├── variables.tf │ ├── versions.tf │ ├── waf.tf │ ├── workers.tf │ └── workers │ ├── .dev.vars.example │ ├── .gitignore │ ├── README.md │ ├── snippet-upload.js │ └── wrangler.toml ├── tools ├── blackfire │ ├── .gitignore │ ├── composer.json │ └── composer.lock ├── box │ ├── .gitignore │ ├── composer.json │ └── composer.lock ├── cs-fixer │ ├── .gitignore │ ├── composer.json │ └── composer.lock ├── infection │ ├── .gitignore │ ├── composer.json │ ├── composer.lock │ └── phpunit.xml ├── monorepo │ ├── .gitignore │ ├── composer.json │ └── composer.lock ├── phpbench │ ├── .gitignore │ ├── composer.json │ └── composer.lock ├── phpdocumentor │ ├── .gitignore │ ├── composer.json │ └── composer.lock ├── phpstan │ ├── .gitignore │ ├── composer.json │ └── composer.lock ├── phpunit │ ├── .gitignore │ ├── composer.json │ └── composer.lock └── rector │ ├── .gitignore │ ├── composer.json │ ├── composer.lock │ └── src │ └── Flow │ └── Tools │ └── Rector │ ├── AddArrayParamDocTypeMixed.php │ ├── AddArrayPropertyDocTypeMixed.php │ ├── AddArrayReturnDocTypeMixed.php │ ├── ArrayDocBlockType.php │ ├── NewObjectToFunction.php │ └── NewToFunctionCallRector.php ├── wasm ├── .gitignore ├── README.md ├── build.sh └── pib_eval.c └── web └── landing ├── .env ├── .env.test ├── .gitignore ├── .php-version ├── .symfony.local.yaml ├── README.md ├── assets ├── app.js ├── bootstrap.js ├── codemirror │ ├── completions │ │ ├── dataframe.js │ │ ├── dsl.js │ │ ├── flow.js │ │ └── scalarfunctionchain.js │ └── themes │ │ └── theme-flow.js ├── controllers.json ├── controllers │ ├── all_links_external_controller.js │ ├── clipboard_controller.js │ ├── code_editor_controller.js │ ├── image_swap_controller.js │ ├── mermaid_controller.js │ ├── playground_controller.js │ ├── playground_format_controller.js │ ├── playground_help_controller.js │ ├── playground_output_controller.js │ ├── playground_reset_controller.js │ ├── playground_run_controller.js │ ├── playground_share_controller.js │ ├── playground_storage_controller.js │ ├── playground_tabs_controller.js │ ├── playground_upload_controller.js │ ├── playground_workspace_controller.js │ ├── scroll_to_top_controller.js │ ├── syntax_highlight_controller.js │ ├── turnstile_controller.js │ └── wasm_controller.js ├── images │ ├── banner.png │ ├── banner.svg │ ├── elephant.svg │ ├── favicons │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ └── favicon.ico │ ├── icons │ │ ├── api.svg │ │ ├── arrow-right.svg │ │ ├── arrow-up.svg │ │ ├── chart-bar.svg │ │ ├── checklist.svg │ │ ├── close.svg │ │ ├── code-active.svg │ │ ├── code.svg │ │ ├── cookie.svg │ │ ├── copy.svg │ │ ├── data-flow.svg │ │ ├── date.svg │ │ ├── discord.svg │ │ ├── external.svg │ │ ├── extract.svg │ │ ├── file.svg │ │ ├── flow.svg │ │ ├── folder.svg │ │ ├── github.svg │ │ ├── heart.svg │ │ ├── help.svg │ │ ├── link.svg │ │ ├── load.svg │ │ ├── menu.svg │ │ ├── package.svg │ │ ├── pencil.svg │ │ ├── play-active.svg │ │ ├── play.svg │ │ ├── refresh-active.svg │ │ ├── refresh.svg │ │ ├── share-active.svg │ │ ├── share.svg │ │ ├── tools.svg │ │ ├── transform.svg │ │ ├── upload-active.svg │ │ ├── upload.svg │ │ ├── users-group.svg │ │ ├── zoom-in.svg │ │ └── zoom-out.svg │ ├── logo.svg │ └── sponsors │ │ ├── 1Password.png │ │ ├── blackfire.png │ │ ├── cloudflare.png │ │ ├── digital-ocean.svg │ │ ├── sentry.svg │ │ └── tailscale.png ├── models │ ├── Violation.js │ └── Violations.js ├── prismjs │ ├── plugins │ │ └── autolinker │ │ │ └── autolinker.js │ └── themes │ │ └── prism-flow.css ├── services │ └── snippet-fingerprint.js ├── styles │ ├── app.css │ └── changelog.css └── wasm │ ├── .gitignore │ ├── bin │ └── cs-fixer.php.wasm │ ├── code.php.wasm │ ├── data │ ├── orders.csv │ ├── orders.json │ ├── orders.parquet │ └── orders.xml │ ├── flow.phar │ ├── php.js │ ├── php.wasm │ ├── phpcsfixer.php.wasm │ ├── tools │ ├── flow.phar │ └── php-cs-fixer.phar │ └── vendor │ └── autoload.php.wasm ├── bin └── console ├── composer.json ├── composer.lock ├── config ├── bundles.php ├── packages │ ├── asset_mapper.yaml │ ├── framework.yaml │ ├── monolog.yaml │ ├── presta_sitemap.yaml │ ├── routing.yaml │ ├── static_content_generator.yaml │ ├── symfonycasts_tailwind.yaml │ ├── twig.yaml │ └── web_profiler.yaml ├── preload.php ├── routes.yaml ├── routes │ ├── framework.yaml │ └── web_profiler.yaml └── services.yaml ├── docs ├── examples.md ├── playground.md └── playground │ ├── code-editor.md │ ├── playground-format.md │ ├── playground-help.md │ ├── playground-output.md │ ├── playground-reset.md │ ├── playground-run.md │ ├── playground-share.md │ ├── playground-storage.md │ ├── playground-tabs.md │ ├── playground-upload.md │ ├── playground-workspace.md │ ├── playground.md │ ├── turnstile.md │ └── wasm.md ├── drivers └── .gitignore ├── importmap.php ├── phpunit.xml ├── public ├── BingSiteAuth.xml ├── CNAME ├── _headers ├── index.php └── robots.txt ├── resources ├── api.json └── dsl.json ├── src └── Flow │ └── Website │ ├── Blog │ ├── Post.php │ └── Posts.php │ ├── Command │ ├── GenerateDSLCompleterCommand.php │ ├── GenerateDataFrameCompleterCommand.php │ ├── GenerateFlowCompleterCommand.php │ └── GenerateScalarFunctionChainCompleterCommand.php │ ├── Controller │ ├── BlogController.php │ ├── DocumentationController.php │ ├── ExamplesController.php │ ├── FlowController.php │ ├── HomeController.php │ ├── LayoutController.php │ └── PlaygroundController.php │ ├── EventListener │ └── SitemapSubscriber.php │ ├── Factory │ └── Github │ │ └── ContributorsRequestFactory.php │ ├── Kernel.php │ ├── Model │ └── Documentation │ │ ├── DSLDefinition.php │ │ ├── Example.php │ │ ├── Module.php │ │ ├── Page.php │ │ └── Type.php │ ├── Service │ ├── Documentation │ │ ├── DSLDefinitions.php │ │ └── Pages.php │ ├── Example │ │ └── Output.php │ ├── Examples.php │ ├── Github.php │ └── Markdown │ │ ├── FlowCodeRenderer.php │ │ ├── FlowLinkRenderer.php │ │ ├── FlowVersionReplacer.php │ │ ├── LeagueCommonMarkConverterFactory.php │ │ └── MermaidCodeRenderer.php │ ├── StaticSourceProvider │ ├── BlogPostsProvider.php │ ├── DSLProvider.php │ ├── DocumentationProvider.php │ └── ExamplesSourceProvider.php │ └── Twig │ ├── DSLExtension.php │ ├── FlowExtension.php │ ├── HumanizerExtension.php │ └── SlugifyExtension.php ├── tailwind.config.js ├── templates ├── base.html.twig ├── blog │ ├── post.html.twig │ ├── posts.html.twig │ └── posts │ │ ├── 2024-04-04 │ │ └── building-custom-extractor-google-analytics │ │ │ ├── accountSummary.json │ │ │ ├── extractor-01.php │ │ │ ├── extractor-02.php │ │ │ ├── extractor-03.php │ │ │ ├── extractor-04.php │ │ │ ├── from_ga_account_summaries.php │ │ │ ├── ga_account_summary_to_row.php │ │ │ ├── post.html.twig │ │ │ ├── propertySummary.json │ │ │ ├── schema.txt │ │ │ ├── usage-dsl.php │ │ │ └── usage.php │ │ ├── 2024-08-08 │ │ └── scalar-functions │ │ │ ├── post.html.twig │ │ │ ├── power-eval.php │ │ │ ├── power-test.php │ │ │ ├── power.php │ │ │ ├── scalar-function.php │ │ │ └── when-function.php │ │ ├── 2025-01-25 │ │ └── data-processing-in-php │ │ │ ├── address.json │ │ │ ├── batch-size.php │ │ │ ├── code.php │ │ │ ├── data.txt │ │ │ ├── dbal-bulk-upsert.php │ │ │ ├── full-validation.php │ │ │ ├── join-each.php │ │ │ ├── post.html.twig │ │ │ ├── single-column-validation.php │ │ │ ├── string-length-validation.php │ │ │ ├── user-id-join-data-frame-factory.php │ │ │ ├── validation-transformation.php │ │ │ └── write-to-branch.php │ │ └── 2025-03-16 │ │ └── flow-php-release-cycle │ │ └── post.html.twig ├── completers │ ├── dataframe-codemirror.js.twig │ ├── dsl-codemirror.js.twig │ ├── flow-codemirror.js.twig │ └── scalarfunctionchain-codemirror.js.twig ├── documentation │ ├── dsl.html.twig │ ├── dsl │ │ └── function.html.twig │ ├── example.html.twig │ ├── navigation_left.html.twig │ ├── navigation_right.html.twig │ └── page.html.twig ├── example │ └── index.html.twig ├── main │ ├── _contributors.html.twig │ ├── _hero.html.twig │ ├── changelog.html.twig │ ├── index.html.twig │ └── sponsor.html.twig └── playground │ └── index.html.twig ├── tests ├── Flow │ └── Website │ │ └── Tests │ │ ├── Fixtures │ │ └── Valid │ │ │ └── topics │ │ │ ├── topic_1 │ │ │ ├── example_1 │ │ │ │ └── code.php │ │ │ └── example_2 │ │ │ │ └── code.php │ │ │ ├── topic_2 │ │ │ ├── example_1 │ │ │ │ └── code.php │ │ │ └── example_2 │ │ │ │ └── code.php │ │ │ └── topic_3 │ │ │ └── example_1 │ │ │ └── code.php │ │ ├── Functional │ │ ├── EndToEndTestCase.php │ │ ├── PlaygroundFormatCodeTest.php │ │ ├── PlaygroundHelpTest.php │ │ ├── PlaygroundResetTest.php │ │ ├── PlaygroundRunCodeTest.php │ │ ├── PlaygroundSnippetTest.php │ │ ├── PlaygroundStorageTest.php │ │ ├── PlaygroundUploadTest.php │ │ └── PlaygroundWorkspaceTest.php │ │ └── Integration │ │ ├── DocumentationTest.php │ │ └── ExamplesTest.php ├── autoload.php └── router.php └── tools └── phpunit ├── .gitignore ├── composer.json └── composer.lock /.codecov.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/.codecov.yaml -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/proposal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/.github/ISSUE_TEMPLATE/proposal.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/task.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/.github/ISSUE_TEMPLATE/task.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/actions/codecov-report/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/.github/actions/codecov-report/action.yml -------------------------------------------------------------------------------- /.github/actions/setup-php-env/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/.github/actions/setup-php-env/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/automation-changelog-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/.github/workflows/automation-changelog-update.yml -------------------------------------------------------------------------------- /.github/workflows/baseline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/.github/workflows/baseline.yml -------------------------------------------------------------------------------- /.github/workflows/dependabot-auto-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/.github/workflows/dependabot-auto-merge.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/job-benchmark-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/.github/workflows/job-benchmark-tests.yml -------------------------------------------------------------------------------- /.github/workflows/job-examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/.github/workflows/job-examples.yml -------------------------------------------------------------------------------- /.github/workflows/job-extension-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/.github/workflows/job-extension-tests.yml -------------------------------------------------------------------------------- /.github/workflows/job-mutation-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/.github/workflows/job-mutation-tests.yml -------------------------------------------------------------------------------- /.github/workflows/job-pg-query-extension.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/.github/workflows/job-pg-query-extension.yml -------------------------------------------------------------------------------- /.github/workflows/job-static-analyze.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/.github/workflows/job-static-analyze.yml -------------------------------------------------------------------------------- /.github/workflows/job-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/.github/workflows/job-tests.yml -------------------------------------------------------------------------------- /.github/workflows/job-windows-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/.github/workflows/job-windows-tests.yml -------------------------------------------------------------------------------- /.github/workflows/monorepo-split.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/.github/workflows/monorepo-split.yml -------------------------------------------------------------------------------- /.github/workflows/pr-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/.github/workflows/pr-check.yml -------------------------------------------------------------------------------- /.github/workflows/pr-comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/.github/workflows/pr-comment.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test-suite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/.github/workflows/test-suite.yml -------------------------------------------------------------------------------- /.github/workflows/test-website.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/.github/workflows/test-website.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/.gitignore -------------------------------------------------------------------------------- /.nix/php/lib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/.nix/php/lib/.gitignore -------------------------------------------------------------------------------- /.nix/php/lib/blackfire.ini.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/.nix/php/lib/blackfire.ini.dist -------------------------------------------------------------------------------- /.nix/php/lib/pcov.ini.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/.nix/php/lib/pcov.ini.dist -------------------------------------------------------------------------------- /.nix/php/lib/php.ini.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/.nix/php/lib/php.ini.dist -------------------------------------------------------------------------------- /.nix/php/lib/xdebug.ini.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/.nix/php/lib/xdebug.ini.dist -------------------------------------------------------------------------------- /.nix/pkgs/flow-php/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/.nix/pkgs/flow-php/package.nix -------------------------------------------------------------------------------- /.nix/pkgs/php-brotli/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/.nix/pkgs/php-brotli/package.nix -------------------------------------------------------------------------------- /.nix/pkgs/php-lz4/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/.nix/pkgs/php-lz4/package.nix -------------------------------------------------------------------------------- /.nix/pkgs/php-pg-query-ext/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/.nix/pkgs/php-pg-query-ext/package.nix -------------------------------------------------------------------------------- /.nix/pkgs/php-snappy/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/.nix/pkgs/php-snappy/package.nix -------------------------------------------------------------------------------- /.nix/pkgs/php-zstd/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/.nix/pkgs/php-zstd/package.nix -------------------------------------------------------------------------------- /.nix/shell/.gitignore: -------------------------------------------------------------------------------- 1 | starship.toml -------------------------------------------------------------------------------- /.nix/shell/starship.toml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/.nix/shell/starship.toml.dist -------------------------------------------------------------------------------- /.php-cs-fixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/.php-cs-fixer.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/SECURITY.md -------------------------------------------------------------------------------- /bin/docs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/bin/docs.php -------------------------------------------------------------------------------- /compose.yml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/compose.yml.dist -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/composer.lock -------------------------------------------------------------------------------- /documentation/adrs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/adrs.md -------------------------------------------------------------------------------- /documentation/adrs/extension-points.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/adrs/extension-points.md -------------------------------------------------------------------------------- /documentation/adrs/static-analysis-baseline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/adrs/static-analysis-baseline.md -------------------------------------------------------------------------------- /documentation/adrs/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/adrs/template.md -------------------------------------------------------------------------------- /documentation/assets/img/daisy_bush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/assets/img/daisy_bush.png -------------------------------------------------------------------------------- /documentation/assets/img/light_slate_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/assets/img/light_slate_blue.png -------------------------------------------------------------------------------- /documentation/assets/img/mirage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/assets/img/mirage.png -------------------------------------------------------------------------------- /documentation/assets/img/sunset_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/assets/img/sunset_orange.png -------------------------------------------------------------------------------- /documentation/assets/img/warm_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/assets/img/warm_blue.png -------------------------------------------------------------------------------- /documentation/components/adapters/avro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/adapters/avro.md -------------------------------------------------------------------------------- /documentation/components/adapters/chartjs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/adapters/chartjs.md -------------------------------------------------------------------------------- /documentation/components/adapters/csv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/adapters/csv.md -------------------------------------------------------------------------------- /documentation/components/adapters/doctrine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/adapters/doctrine.md -------------------------------------------------------------------------------- /documentation/components/adapters/excel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/adapters/excel.md -------------------------------------------------------------------------------- /documentation/components/adapters/google-sheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/adapters/google-sheet.md -------------------------------------------------------------------------------- /documentation/components/adapters/http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/adapters/http.md -------------------------------------------------------------------------------- /documentation/components/adapters/json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/adapters/json.md -------------------------------------------------------------------------------- /documentation/components/adapters/logger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/adapters/logger.md -------------------------------------------------------------------------------- /documentation/components/adapters/meilisearch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/adapters/meilisearch.md -------------------------------------------------------------------------------- /documentation/components/adapters/parquet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/adapters/parquet.md -------------------------------------------------------------------------------- /documentation/components/adapters/text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/adapters/text.md -------------------------------------------------------------------------------- /documentation/components/adapters/xml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/adapters/xml.md -------------------------------------------------------------------------------- /documentation/components/cli/docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/cli/docs.md -------------------------------------------------------------------------------- /documentation/components/core/aggregations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/core/aggregations.md -------------------------------------------------------------------------------- /documentation/components/core/batch-processing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/core/batch-processing.md -------------------------------------------------------------------------------- /documentation/components/core/building-blocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/core/building-blocks.md -------------------------------------------------------------------------------- /documentation/components/core/caching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/core/caching.md -------------------------------------------------------------------------------- /documentation/components/core/constraints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/core/constraints.md -------------------------------------------------------------------------------- /documentation/components/core/core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/core/core.md -------------------------------------------------------------------------------- /documentation/components/core/data-retrieval.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/core/data-retrieval.md -------------------------------------------------------------------------------- /documentation/components/core/display.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/core/display.md -------------------------------------------------------------------------------- /documentation/components/core/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/core/error-handling.md -------------------------------------------------------------------------------- /documentation/components/core/execution-mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/core/execution-mode.md -------------------------------------------------------------------------------- /documentation/components/core/filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/core/filter.md -------------------------------------------------------------------------------- /documentation/components/core/group-by.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/core/group-by.md -------------------------------------------------------------------------------- /documentation/components/core/join.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/core/join.md -------------------------------------------------------------------------------- /documentation/components/core/limit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/core/limit.md -------------------------------------------------------------------------------- /documentation/components/core/map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/core/map.md -------------------------------------------------------------------------------- /documentation/components/core/offset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/core/offset.md -------------------------------------------------------------------------------- /documentation/components/core/partitioning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/core/partitioning.md -------------------------------------------------------------------------------- /documentation/components/core/pivot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/core/pivot.md -------------------------------------------------------------------------------- /documentation/components/core/rename.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/core/rename.md -------------------------------------------------------------------------------- /documentation/components/core/retry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/core/retry.md -------------------------------------------------------------------------------- /documentation/components/core/save-mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/core/save-mode.md -------------------------------------------------------------------------------- /documentation/components/core/schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/core/schema.md -------------------------------------------------------------------------------- /documentation/components/core/select-drop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/core/select-drop.md -------------------------------------------------------------------------------- /documentation/components/core/sort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/core/sort.md -------------------------------------------------------------------------------- /documentation/components/core/transformations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/core/transformations.md -------------------------------------------------------------------------------- /documentation/components/core/until.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/core/until.md -------------------------------------------------------------------------------- /documentation/components/core/window-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/core/window-functions.md -------------------------------------------------------------------------------- /documentation/components/libs/array-dot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/libs/array-dot.md -------------------------------------------------------------------------------- /documentation/components/libs/azure-sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/libs/azure-sdk.md -------------------------------------------------------------------------------- /documentation/components/libs/dremel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/libs/dremel.md -------------------------------------------------------------------------------- /documentation/components/libs/filesystem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/libs/filesystem.md -------------------------------------------------------------------------------- /documentation/components/libs/parquet-viewer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/libs/parquet-viewer.md -------------------------------------------------------------------------------- /documentation/components/libs/parquet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/libs/parquet.md -------------------------------------------------------------------------------- /documentation/components/libs/pg-query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/libs/pg-query.md -------------------------------------------------------------------------------- /documentation/components/libs/snappy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/libs/snappy.md -------------------------------------------------------------------------------- /documentation/components/libs/types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/components/libs/types.md -------------------------------------------------------------------------------- /documentation/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/contributing.md -------------------------------------------------------------------------------- /documentation/contributing/environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/contributing/environment.md -------------------------------------------------------------------------------- /documentation/contributing/guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/contributing/guidelines.md -------------------------------------------------------------------------------- /documentation/contributing/nix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/contributing/nix.md -------------------------------------------------------------------------------- /documentation/contributing/wasm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/contributing/wasm.md -------------------------------------------------------------------------------- /documentation/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/examples.md -------------------------------------------------------------------------------- /documentation/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/installation.md -------------------------------------------------------------------------------- /documentation/installation/docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/installation/docker.md -------------------------------------------------------------------------------- /documentation/installation/homebrew.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/installation/homebrew.md -------------------------------------------------------------------------------- /documentation/installation/phive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/installation/phive.md -------------------------------------------------------------------------------- /documentation/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/introduction.md -------------------------------------------------------------------------------- /documentation/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/quick-start.md -------------------------------------------------------------------------------- /documentation/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/security.md -------------------------------------------------------------------------------- /documentation/style-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/style-guide.md -------------------------------------------------------------------------------- /documentation/upgrading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/documentation/upgrading.md -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/.gitignore -------------------------------------------------------------------------------- /examples/clean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/clean.php -------------------------------------------------------------------------------- /examples/run.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/run.php -------------------------------------------------------------------------------- /examples/topics/aggregations/grouping/priority.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /examples/topics/data_frame/batch_by/code.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/data_frame/batch_by/code.php -------------------------------------------------------------------------------- /examples/topics/data_frame/batch_by/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/data_frame/batch_by/composer.json -------------------------------------------------------------------------------- /examples/topics/data_frame/batch_by/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/data_frame/batch_by/composer.lock -------------------------------------------------------------------------------- /examples/topics/data_frame/batch_by/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/data_frame/batch_by/output.txt -------------------------------------------------------------------------------- /examples/topics/data_frame/batch_by/priority.txt: -------------------------------------------------------------------------------- 1 | 4 -------------------------------------------------------------------------------- /examples/topics/data_frame/batch_size/collect/priority.txt: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /examples/topics/data_frame/batch_size/constant_size/priority.txt: -------------------------------------------------------------------------------- 1 | 4 -------------------------------------------------------------------------------- /examples/topics/data_frame/batch_size/priority.txt: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /examples/topics/data_frame/cache/code.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/data_frame/cache/code.php -------------------------------------------------------------------------------- /examples/topics/data_frame/cache/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/data_frame/cache/composer.json -------------------------------------------------------------------------------- /examples/topics/data_frame/cache/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/data_frame/cache/composer.lock -------------------------------------------------------------------------------- /examples/topics/data_frame/cache/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/data_frame/cache/output.txt -------------------------------------------------------------------------------- /examples/topics/data_frame/cache/output/.gitignore: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /examples/topics/data_frame/columns/create/priority.txt: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /examples/topics/data_frame/columns/rename/priority.txt: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /examples/topics/data_frame/data_reading/array/priority.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /examples/topics/data_frame/data_reading/csv/priority.txt: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /examples/topics/data_frame/data_reading/database/priority.txt: -------------------------------------------------------------------------------- 1 | 6 -------------------------------------------------------------------------------- /examples/topics/data_frame/data_reading/elasticsearch/.env.dist: -------------------------------------------------------------------------------- 1 | ELASTICSEARCH_URL=localhost:9200 -------------------------------------------------------------------------------- /examples/topics/data_frame/data_reading/json/priority.txt: -------------------------------------------------------------------------------- 1 | 4 -------------------------------------------------------------------------------- /examples/topics/data_frame/data_reading/jsonl/priority.txt: -------------------------------------------------------------------------------- 1 | 4 -------------------------------------------------------------------------------- /examples/topics/data_frame/data_reading/parquet/priority.txt: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /examples/topics/data_frame/data_reading/priority.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /examples/topics/data_frame/data_reading/sequence_date/hidden.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /examples/topics/data_frame/data_reading/sequence_date_recurrences/hidden.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /examples/topics/data_frame/data_reading/sequence_number/hidden.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /examples/topics/data_frame/data_reading/xml/priority.txt: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /examples/topics/data_frame/data_writing/array/priority.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /examples/topics/data_frame/data_writing/csv/description.md: -------------------------------------------------------------------------------- 1 | Write data to CSV file. -------------------------------------------------------------------------------- /examples/topics/data_frame/data_writing/csv/output.csv: -------------------------------------------------------------------------------- 1 | id,name,age 2 | 1,John,30 3 | 2,Jane,25 4 | 3,Bob,35 5 | 4,Alice,28 6 | 5,Charlie,32 7 | -------------------------------------------------------------------------------- /examples/topics/data_frame/data_writing/csv/priority.txt: -------------------------------------------------------------------------------- 1 | 4 -------------------------------------------------------------------------------- /examples/topics/data_frame/data_writing/database/output/.gitignore: -------------------------------------------------------------------------------- 1 | orders.db -------------------------------------------------------------------------------- /examples/topics/data_frame/data_writing/database_delete/output/.gitignore: -------------------------------------------------------------------------------- 1 | orders.db -------------------------------------------------------------------------------- /examples/topics/data_frame/data_writing/database_upsert/output/.gitignore: -------------------------------------------------------------------------------- 1 | orders.db -------------------------------------------------------------------------------- /examples/topics/data_frame/data_writing/elasticsearch/.env.dist: -------------------------------------------------------------------------------- 1 | ELASTICSEARCH_URL=localhost:9200 -------------------------------------------------------------------------------- /examples/topics/data_frame/data_writing/jsonl/priority.txt: -------------------------------------------------------------------------------- 1 | 4 -------------------------------------------------------------------------------- /examples/topics/data_frame/data_writing/overwrite/output/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /examples/topics/data_frame/data_writing/parquet/priority.txt: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /examples/topics/data_frame/data_writing/priority.txt: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /examples/topics/data_frame/data_writing/text/output.txt: -------------------------------------------------------------------------------- 1 | 1_John_30 2 | 2_Jane_25 3 | 3_Bob_35 4 | 4_Alice_28 5 | 5_Charlie_32 6 | -------------------------------------------------------------------------------- /examples/topics/data_frame/data_writing/text/priority.txt: -------------------------------------------------------------------------------- 1 | 4 -------------------------------------------------------------------------------- /examples/topics/data_frame/data_writing/xml/description.md: -------------------------------------------------------------------------------- 1 | Write data to XML file. -------------------------------------------------------------------------------- /examples/topics/data_frame/data_writing/xml/priority.txt: -------------------------------------------------------------------------------- 1 | 4 -------------------------------------------------------------------------------- /examples/topics/data_frame/priority.txt: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /examples/topics/data_frame/transformations/custom/description.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/topics/filesystem/.gitignore: -------------------------------------------------------------------------------- 1 | **/.env -------------------------------------------------------------------------------- /examples/topics/filesystem/azure/.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/filesystem/azure/.env.dist -------------------------------------------------------------------------------- /examples/topics/filesystem/azure/code.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/filesystem/azure/code.php -------------------------------------------------------------------------------- /examples/topics/filesystem/azure/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/filesystem/azure/composer.json -------------------------------------------------------------------------------- /examples/topics/filesystem/azure/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/filesystem/azure/composer.lock -------------------------------------------------------------------------------- /examples/topics/filesystem/azure/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/filesystem/azure/output.txt -------------------------------------------------------------------------------- /examples/topics/filesystem/azure/priority.txt: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /examples/topics/filesystem/local/code.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/filesystem/local/code.php -------------------------------------------------------------------------------- /examples/topics/filesystem/local/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/filesystem/local/composer.json -------------------------------------------------------------------------------- /examples/topics/filesystem/local/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/filesystem/local/composer.lock -------------------------------------------------------------------------------- /examples/topics/filesystem/local/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/filesystem/local/description.md -------------------------------------------------------------------------------- /examples/topics/filesystem/local/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/filesystem/local/output.txt -------------------------------------------------------------------------------- /examples/topics/filesystem/local/priority.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /examples/topics/filesystem/priority.txt: -------------------------------------------------------------------------------- 1 | 4 -------------------------------------------------------------------------------- /examples/topics/filesystem/s3/.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/filesystem/s3/.env.dist -------------------------------------------------------------------------------- /examples/topics/filesystem/s3/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | vendor -------------------------------------------------------------------------------- /examples/topics/filesystem/s3/code.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/filesystem/s3/code.php -------------------------------------------------------------------------------- /examples/topics/filesystem/s3/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/filesystem/s3/composer.json -------------------------------------------------------------------------------- /examples/topics/filesystem/s3/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/filesystem/s3/composer.lock -------------------------------------------------------------------------------- /examples/topics/filesystem/s3/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/filesystem/s3/output.txt -------------------------------------------------------------------------------- /examples/topics/filesystem/s3/priority.txt: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /examples/topics/filesystem/stdout/code.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/filesystem/stdout/code.php -------------------------------------------------------------------------------- /examples/topics/filesystem/stdout/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/filesystem/stdout/composer.json -------------------------------------------------------------------------------- /examples/topics/filesystem/stdout/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/filesystem/stdout/composer.lock -------------------------------------------------------------------------------- /examples/topics/filesystem/stdout/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/filesystem/stdout/description.md -------------------------------------------------------------------------------- /examples/topics/filesystem/stdout/priority.txt: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /examples/topics/join/join/code.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/join/join/code.php -------------------------------------------------------------------------------- /examples/topics/join/join/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/join/join/composer.json -------------------------------------------------------------------------------- /examples/topics/join/join/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/join/join/composer.lock -------------------------------------------------------------------------------- /examples/topics/join/join/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/join/join/description.md -------------------------------------------------------------------------------- /examples/topics/join/join/flow_php_example.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/join/join/flow_php_example.zip -------------------------------------------------------------------------------- /examples/topics/join/join/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/join/join/output.txt -------------------------------------------------------------------------------- /examples/topics/join/join_each/code.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/join/join_each/code.php -------------------------------------------------------------------------------- /examples/topics/join/join_each/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/join/join_each/composer.json -------------------------------------------------------------------------------- /examples/topics/join/join_each/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/join/join_each/composer.lock -------------------------------------------------------------------------------- /examples/topics/join/join_each/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/join/join_each/description.md -------------------------------------------------------------------------------- /examples/topics/join/join_each/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/join/join_each/output.txt -------------------------------------------------------------------------------- /examples/topics/join/priority.txt: -------------------------------------------------------------------------------- 1 | 7 -------------------------------------------------------------------------------- /examples/topics/partitioning/partition_pruning/input/color=blue/sku=PRODUCT01/65c7e9bc4460a568233195.csv: -------------------------------------------------------------------------------- 1 | id,color,sku 2 | 7,blue,PRODUCT01 3 | -------------------------------------------------------------------------------- /examples/topics/partitioning/partition_pruning/input/color=blue/sku=PRODUCT02/65c7e9bc446c2326068326.csv: -------------------------------------------------------------------------------- 1 | id,color,sku 2 | 8,blue,PRODUCT02 3 | -------------------------------------------------------------------------------- /examples/topics/partitioning/partition_pruning/input/color=green/sku=PRODUCT01/65c7e9bc44305321518126.csv: -------------------------------------------------------------------------------- 1 | id,color,sku 2 | 4,green,PRODUCT01 3 | -------------------------------------------------------------------------------- /examples/topics/partitioning/partition_pruning/input/color=green/sku=PRODUCT02/65c7e9bc44421020940545.csv: -------------------------------------------------------------------------------- 1 | id,color,sku 2 | 5,green,PRODUCT02 3 | -------------------------------------------------------------------------------- /examples/topics/partitioning/partition_pruning/input/color=green/sku=PRODUCT03/65c7e9bc44515031584752.csv: -------------------------------------------------------------------------------- 1 | id,color,sku 2 | 6,green,PRODUCT03 3 | -------------------------------------------------------------------------------- /examples/topics/partitioning/partition_pruning/input/color=red/sku=PRODUCT01/65c7e9bc4386f958078278.csv: -------------------------------------------------------------------------------- 1 | id,color,sku 2 | 1,red,PRODUCT01 3 | -------------------------------------------------------------------------------- /examples/topics/partitioning/partition_pruning/input/color=red/sku=PRODUCT02/65c7e9bc440fa083889144.csv: -------------------------------------------------------------------------------- 1 | id,color,sku 2 | 2,red,PRODUCT02 3 | -------------------------------------------------------------------------------- /examples/topics/partitioning/partition_pruning/input/color=red/sku=PRODUCT03/65c7e9bc44209401416287.csv: -------------------------------------------------------------------------------- 1 | id,color,sku 2 | 3,red,PRODUCT03 3 | -------------------------------------------------------------------------------- /examples/topics/partitioning/partitioning/output/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/topics/partitioning/partitioning/priority.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /examples/topics/partitioning/path_partitions/input/color=blue/sku=PRODUCT01/65c7e9bc4460a568233195.csv: -------------------------------------------------------------------------------- 1 | id,color,sku 2 | 7,blue,PRODUCT01 3 | -------------------------------------------------------------------------------- /examples/topics/partitioning/path_partitions/input/color=blue/sku=PRODUCT02/65c7e9bc446c2326068326.csv: -------------------------------------------------------------------------------- 1 | id,color,sku 2 | 8,blue,PRODUCT02 3 | -------------------------------------------------------------------------------- /examples/topics/partitioning/path_partitions/input/color=green/sku=PRODUCT01/65c7e9bc44305321518126.csv: -------------------------------------------------------------------------------- 1 | id,color,sku 2 | 4,green,PRODUCT01 3 | -------------------------------------------------------------------------------- /examples/topics/partitioning/path_partitions/input/color=green/sku=PRODUCT02/65c7e9bc44421020940545.csv: -------------------------------------------------------------------------------- 1 | id,color,sku 2 | 5,green,PRODUCT02 3 | -------------------------------------------------------------------------------- /examples/topics/partitioning/path_partitions/input/color=green/sku=PRODUCT03/65c7e9bc44515031584752.csv: -------------------------------------------------------------------------------- 1 | id,color,sku 2 | 6,green,PRODUCT03 3 | -------------------------------------------------------------------------------- /examples/topics/partitioning/path_partitions/input/color=red/sku=PRODUCT01/65c7e9bc4386f958078278.csv: -------------------------------------------------------------------------------- 1 | id,color,sku 2 | 1,red,PRODUCT01 3 | -------------------------------------------------------------------------------- /examples/topics/partitioning/path_partitions/input/color=red/sku=PRODUCT02/65c7e9bc440fa083889144.csv: -------------------------------------------------------------------------------- 1 | id,color,sku 2 | 2,red,PRODUCT02 3 | -------------------------------------------------------------------------------- /examples/topics/partitioning/path_partitions/input/color=red/sku=PRODUCT03/65c7e9bc44209401416287.csv: -------------------------------------------------------------------------------- 1 | id,color,sku 2 | 3,red,PRODUCT03 3 | -------------------------------------------------------------------------------- /examples/topics/partitioning/priority.txt: -------------------------------------------------------------------------------- 1 | 6 -------------------------------------------------------------------------------- /examples/topics/partitioning/reading/code.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/partitioning/reading/code.php -------------------------------------------------------------------------------- /examples/topics/partitioning/reading/input/color=blue/sku=PRODUCT01/65c7e9bc4460a568233195.csv: -------------------------------------------------------------------------------- 1 | id,color,sku 2 | 7,blue,PRODUCT01 3 | -------------------------------------------------------------------------------- /examples/topics/partitioning/reading/input/color=blue/sku=PRODUCT02/65c7e9bc446c2326068326.csv: -------------------------------------------------------------------------------- 1 | id,color,sku 2 | 8,blue,PRODUCT02 3 | -------------------------------------------------------------------------------- /examples/topics/partitioning/reading/input/color=green/sku=PRODUCT01/65c7e9bc44305321518126.csv: -------------------------------------------------------------------------------- 1 | id,color,sku 2 | 4,green,PRODUCT01 3 | -------------------------------------------------------------------------------- /examples/topics/partitioning/reading/input/color=green/sku=PRODUCT02/65c7e9bc44421020940545.csv: -------------------------------------------------------------------------------- 1 | id,color,sku 2 | 5,green,PRODUCT02 3 | -------------------------------------------------------------------------------- /examples/topics/partitioning/reading/input/color=green/sku=PRODUCT03/65c7e9bc44515031584752.csv: -------------------------------------------------------------------------------- 1 | id,color,sku 2 | 6,green,PRODUCT03 3 | -------------------------------------------------------------------------------- /examples/topics/partitioning/reading/input/color=red/sku=PRODUCT01/65c7e9bc4386f958078278.csv: -------------------------------------------------------------------------------- 1 | id,color,sku 2 | 1,red,PRODUCT01 3 | -------------------------------------------------------------------------------- /examples/topics/partitioning/reading/input/color=red/sku=PRODUCT02/65c7e9bc440fa083889144.csv: -------------------------------------------------------------------------------- 1 | id,color,sku 2 | 2,red,PRODUCT02 3 | -------------------------------------------------------------------------------- /examples/topics/partitioning/reading/input/color=red/sku=PRODUCT03/65c7e9bc44209401416287.csv: -------------------------------------------------------------------------------- 1 | id,color,sku 2 | 3,red,PRODUCT03 3 | -------------------------------------------------------------------------------- /examples/topics/partitioning/reading/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/partitioning/reading/output.txt -------------------------------------------------------------------------------- /examples/topics/partitioning/reading/priority.txt: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /examples/topics/schema/apply/code.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/schema/apply/code.php -------------------------------------------------------------------------------- /examples/topics/schema/apply/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/schema/apply/composer.json -------------------------------------------------------------------------------- /examples/topics/schema/apply/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/schema/apply/composer.lock -------------------------------------------------------------------------------- /examples/topics/schema/apply/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/schema/apply/description.md -------------------------------------------------------------------------------- /examples/topics/schema/apply/flow_php_example.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/schema/apply/flow_php_example.zip -------------------------------------------------------------------------------- /examples/topics/schema/apply/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/schema/apply/output.txt -------------------------------------------------------------------------------- /examples/topics/schema/apply/priority.txt: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /examples/topics/schema/display/code.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/schema/display/code.php -------------------------------------------------------------------------------- /examples/topics/schema/display/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/schema/display/composer.json -------------------------------------------------------------------------------- /examples/topics/schema/display/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/schema/display/composer.lock -------------------------------------------------------------------------------- /examples/topics/schema/display/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/schema/display/output.txt -------------------------------------------------------------------------------- /examples/topics/schema/inferring/code.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/schema/inferring/code.php -------------------------------------------------------------------------------- /examples/topics/schema/inferring/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/schema/inferring/composer.json -------------------------------------------------------------------------------- /examples/topics/schema/inferring/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/schema/inferring/composer.lock -------------------------------------------------------------------------------- /examples/topics/schema/inferring/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/schema/inferring/description.md -------------------------------------------------------------------------------- /examples/topics/schema/inferring/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/schema/inferring/output.txt -------------------------------------------------------------------------------- /examples/topics/schema/inferring/output/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /examples/topics/schema/priority.txt: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /examples/topics/schema/validate/code.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/schema/validate/code.php -------------------------------------------------------------------------------- /examples/topics/schema/validate/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/schema/validate/composer.json -------------------------------------------------------------------------------- /examples/topics/schema/validate/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/schema/validate/composer.lock -------------------------------------------------------------------------------- /examples/topics/schema/validate/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/schema/validate/output.txt -------------------------------------------------------------------------------- /examples/topics/schema/validate/priority.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /examples/topics/transformations/call/code.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/transformations/call/code.php -------------------------------------------------------------------------------- /examples/topics/transformations/call/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/transformations/call/output.txt -------------------------------------------------------------------------------- /examples/topics/transformations/filtering/basic/priority.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /examples/topics/transformations/literals/code.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/transformations/literals/code.php -------------------------------------------------------------------------------- /examples/topics/transformations/match/code.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/transformations/match/code.php -------------------------------------------------------------------------------- /examples/topics/transformations/match/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/transformations/match/output.txt -------------------------------------------------------------------------------- /examples/topics/transformations/math/code.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/transformations/math/code.php -------------------------------------------------------------------------------- /examples/topics/transformations/math/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/transformations/math/output.txt -------------------------------------------------------------------------------- /examples/topics/transformations/priority.txt: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /examples/topics/transformations/size/code.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/transformations/size/code.php -------------------------------------------------------------------------------- /examples/topics/transformations/size/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/transformations/size/output.txt -------------------------------------------------------------------------------- /examples/topics/transformations/sort/code.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/transformations/sort/code.php -------------------------------------------------------------------------------- /examples/topics/transformations/sort/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/transformations/sort/output.txt -------------------------------------------------------------------------------- /examples/topics/transformations/when/basic/priority.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /examples/topics/transformations/when/else_when/priority.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /examples/topics/transformations/when/odd/code.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/transformations/when/odd/code.php -------------------------------------------------------------------------------- /examples/topics/types/assertions/code.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/types/assertions/code.php -------------------------------------------------------------------------------- /examples/topics/types/assertions/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/types/assertions/composer.json -------------------------------------------------------------------------------- /examples/topics/types/assertions/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/types/assertions/composer.lock -------------------------------------------------------------------------------- /examples/topics/types/structures/code.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/types/structures/code.php -------------------------------------------------------------------------------- /examples/topics/types/structures/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/types/structures/composer.json -------------------------------------------------------------------------------- /examples/topics/types/structures/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/types/structures/composer.lock -------------------------------------------------------------------------------- /examples/topics/types/structures/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/examples/topics/types/structures/output.txt -------------------------------------------------------------------------------- /infection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/infection.json -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/manifest.json -------------------------------------------------------------------------------- /monorepo-builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/monorepo-builder.php -------------------------------------------------------------------------------- /phpbench.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/phpbench.json -------------------------------------------------------------------------------- /phpdoc/.phpdoc/template/base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/phpdoc/.phpdoc/template/base.html.twig -------------------------------------------------------------------------------- /phpdoc/.phpdoc/template/css/custom.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/phpdoc/.phpdoc/template/css/custom.css.twig -------------------------------------------------------------------------------- /phpdoc/.phpdoc/template/css/custom.html.twig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phpdoc/.phpdoc/template/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/phpdoc/.phpdoc/template/index.html.twig -------------------------------------------------------------------------------- /phpdoc/.phpdoc/template/layout.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/phpdoc/.phpdoc/template/layout.html.twig -------------------------------------------------------------------------------- /phpdoc/.phpdoc/template/namespace.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/phpdoc/.phpdoc/template/namespace.html.twig -------------------------------------------------------------------------------- /phpdoc/adapter.chartjs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/phpdoc/adapter.chartjs.xml -------------------------------------------------------------------------------- /phpdoc/adapter.csv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/phpdoc/adapter.csv.xml -------------------------------------------------------------------------------- /phpdoc/adapter.doctrine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/phpdoc/adapter.doctrine.xml -------------------------------------------------------------------------------- /phpdoc/adapter.elasticsearch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/phpdoc/adapter.elasticsearch.xml -------------------------------------------------------------------------------- /phpdoc/adapter.excel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/phpdoc/adapter.excel.xml -------------------------------------------------------------------------------- /phpdoc/adapter.google-sheet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/phpdoc/adapter.google-sheet.xml -------------------------------------------------------------------------------- /phpdoc/adapter.http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/phpdoc/adapter.http.xml -------------------------------------------------------------------------------- /phpdoc/adapter.json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/phpdoc/adapter.json.xml -------------------------------------------------------------------------------- /phpdoc/adapter.logger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/phpdoc/adapter.logger.xml -------------------------------------------------------------------------------- /phpdoc/adapter.meilisearch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/phpdoc/adapter.meilisearch.xml -------------------------------------------------------------------------------- /phpdoc/adapter.parquet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/phpdoc/adapter.parquet.xml -------------------------------------------------------------------------------- /phpdoc/adapter.text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/phpdoc/adapter.text.xml -------------------------------------------------------------------------------- /phpdoc/adapter.xml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/phpdoc/adapter.xml.xml -------------------------------------------------------------------------------- /phpdoc/bridge.filesystem.async-aws.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/phpdoc/bridge.filesystem.async-aws.xml -------------------------------------------------------------------------------- /phpdoc/bridge.filesystem.azure.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/phpdoc/bridge.filesystem.azure.xml -------------------------------------------------------------------------------- /phpdoc/bridge.monolog.http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/phpdoc/bridge.monolog.http.xml -------------------------------------------------------------------------------- /phpdoc/bridge.openapi.specification.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/phpdoc/bridge.openapi.specification.xml -------------------------------------------------------------------------------- /phpdoc/bridge.symfony.http-foundation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/phpdoc/bridge.symfony.http-foundation.xml -------------------------------------------------------------------------------- /phpdoc/cli.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/phpdoc/cli.xml -------------------------------------------------------------------------------- /phpdoc/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/phpdoc/core.xml -------------------------------------------------------------------------------- /phpdoc/lib.array-dot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/phpdoc/lib.array-dot.xml -------------------------------------------------------------------------------- /phpdoc/lib.azure-sdk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/phpdoc/lib.azure-sdk.xml -------------------------------------------------------------------------------- /phpdoc/lib.doctrine-dbal-bulk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/phpdoc/lib.doctrine-dbal-bulk.xml -------------------------------------------------------------------------------- /phpdoc/lib.filesystem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/phpdoc/lib.filesystem.xml -------------------------------------------------------------------------------- /phpdoc/lib.parquet-viewer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/phpdoc/lib.parquet-viewer.xml -------------------------------------------------------------------------------- /phpdoc/lib.parquet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/phpdoc/lib.parquet.xml -------------------------------------------------------------------------------- /phpdoc/lib.pg-query.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/phpdoc/lib.pg-query.xml -------------------------------------------------------------------------------- /phpdoc/lib.rdsl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/phpdoc/lib.rdsl.xml -------------------------------------------------------------------------------- /phpdoc/lib.snappy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/phpdoc/lib.snappy.xml -------------------------------------------------------------------------------- /phpdoc/lib.types.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/phpdoc/lib.types.xml -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /rector.src.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/rector.src.php -------------------------------------------------------------------------------- /rector.tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/rector.tests.php -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/shell.nix -------------------------------------------------------------------------------- /src/adapter/etl-adapter-avro/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-avro/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/adapter/etl-adapter-avro/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-avro/LICENSE -------------------------------------------------------------------------------- /src/adapter/etl-adapter-avro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-avro/README.md -------------------------------------------------------------------------------- /src/adapter/etl-adapter-avro/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-avro/composer.json -------------------------------------------------------------------------------- /src/adapter/etl-adapter-chartjs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-chartjs/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/adapter/etl-adapter-chartjs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-chartjs/LICENSE -------------------------------------------------------------------------------- /src/adapter/etl-adapter-chartjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-chartjs/README.md -------------------------------------------------------------------------------- /src/adapter/etl-adapter-chartjs/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-chartjs/composer.json -------------------------------------------------------------------------------- /src/adapter/etl-adapter-csv/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-csv/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/adapter/etl-adapter-csv/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-csv/LICENSE -------------------------------------------------------------------------------- /src/adapter/etl-adapter-csv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-csv/README.md -------------------------------------------------------------------------------- /src/adapter/etl-adapter-csv/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-csv/composer.json -------------------------------------------------------------------------------- /src/adapter/etl-adapter-doctrine/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-doctrine/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/adapter/etl-adapter-doctrine/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-doctrine/LICENSE -------------------------------------------------------------------------------- /src/adapter/etl-adapter-doctrine/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-doctrine/composer.json -------------------------------------------------------------------------------- /src/adapter/etl-adapter-elasticsearch/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-elasticsearch/LICENSE -------------------------------------------------------------------------------- /src/adapter/etl-adapter-elasticsearch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-elasticsearch/README.md -------------------------------------------------------------------------------- /src/adapter/etl-adapter-excel/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-excel/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/adapter/etl-adapter-excel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-excel/LICENSE -------------------------------------------------------------------------------- /src/adapter/etl-adapter-excel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-excel/README.md -------------------------------------------------------------------------------- /src/adapter/etl-adapter-excel/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-excel/composer.json -------------------------------------------------------------------------------- /src/adapter/etl-adapter-google-sheet/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-google-sheet/LICENSE -------------------------------------------------------------------------------- /src/adapter/etl-adapter-google-sheet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-google-sheet/README.md -------------------------------------------------------------------------------- /src/adapter/etl-adapter-http/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-http/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/adapter/etl-adapter-http/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-http/LICENSE -------------------------------------------------------------------------------- /src/adapter/etl-adapter-http/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-http/README.md -------------------------------------------------------------------------------- /src/adapter/etl-adapter-http/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-http/composer.json -------------------------------------------------------------------------------- /src/adapter/etl-adapter-json/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-json/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/adapter/etl-adapter-json/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-json/LICENSE -------------------------------------------------------------------------------- /src/adapter/etl-adapter-json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-json/README.md -------------------------------------------------------------------------------- /src/adapter/etl-adapter-json/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-json/composer.json -------------------------------------------------------------------------------- /src/adapter/etl-adapter-logger/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-logger/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/adapter/etl-adapter-logger/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-logger/LICENSE -------------------------------------------------------------------------------- /src/adapter/etl-adapter-logger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-logger/README.md -------------------------------------------------------------------------------- /src/adapter/etl-adapter-logger/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-logger/composer.json -------------------------------------------------------------------------------- /src/adapter/etl-adapter-meilisearch/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-meilisearch/LICENSE -------------------------------------------------------------------------------- /src/adapter/etl-adapter-meilisearch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-meilisearch/README.md -------------------------------------------------------------------------------- /src/adapter/etl-adapter-meilisearch/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-meilisearch/composer.json -------------------------------------------------------------------------------- /src/adapter/etl-adapter-parquet/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-parquet/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/adapter/etl-adapter-parquet/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-parquet/LICENSE -------------------------------------------------------------------------------- /src/adapter/etl-adapter-parquet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-parquet/README.md -------------------------------------------------------------------------------- /src/adapter/etl-adapter-parquet/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-parquet/composer.json -------------------------------------------------------------------------------- /src/adapter/etl-adapter-text/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-text/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/adapter/etl-adapter-text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-text/LICENSE -------------------------------------------------------------------------------- /src/adapter/etl-adapter-text/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-text/README.md -------------------------------------------------------------------------------- /src/adapter/etl-adapter-text/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-text/composer.json -------------------------------------------------------------------------------- /src/adapter/etl-adapter-xml/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-xml/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/adapter/etl-adapter-xml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-xml/LICENSE -------------------------------------------------------------------------------- /src/adapter/etl-adapter-xml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-xml/README.md -------------------------------------------------------------------------------- /src/adapter/etl-adapter-xml/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/adapter/etl-adapter-xml/composer.json -------------------------------------------------------------------------------- /src/bridge/filesystem/async-aws/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/bridge/filesystem/async-aws/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/bridge/filesystem/async-aws/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/bridge/filesystem/async-aws/LICENSE -------------------------------------------------------------------------------- /src/bridge/filesystem/async-aws/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/bridge/filesystem/async-aws/composer.json -------------------------------------------------------------------------------- /src/bridge/filesystem/azure/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/bridge/filesystem/azure/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/bridge/filesystem/azure/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/bridge/filesystem/azure/LICENSE -------------------------------------------------------------------------------- /src/bridge/filesystem/azure/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/bridge/filesystem/azure/composer.json -------------------------------------------------------------------------------- /src/bridge/monolog/http/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/bridge/monolog/http/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/bridge/monolog/http/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/bridge/monolog/http/LICENSE -------------------------------------------------------------------------------- /src/bridge/monolog/http/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/bridge/monolog/http/composer.json -------------------------------------------------------------------------------- /src/bridge/openapi/specification/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/bridge/openapi/specification/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/bridge/openapi/specification/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/bridge/openapi/specification/LICENSE -------------------------------------------------------------------------------- /src/bridge/openapi/specification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/bridge/openapi/specification/README.md -------------------------------------------------------------------------------- /src/bridge/openapi/specification/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/bridge/openapi/specification/composer.json -------------------------------------------------------------------------------- /src/bridge/symfony/http-foundation/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/bridge/symfony/http-foundation/LICENSE -------------------------------------------------------------------------------- /src/bridge/symfony/http-foundation/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/bridge/symfony/http-foundation/composer.json -------------------------------------------------------------------------------- /src/cli/box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/cli/box.json -------------------------------------------------------------------------------- /src/cli/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/cli/composer.json -------------------------------------------------------------------------------- /src/cli/flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/cli/flow -------------------------------------------------------------------------------- /src/cli/src/Flow/CLI/Arguments/TypedArgument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/cli/src/Flow/CLI/Arguments/TypedArgument.php -------------------------------------------------------------------------------- /src/cli/src/Flow/CLI/Command/FileReadCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/cli/src/Flow/CLI/Command/FileReadCommand.php -------------------------------------------------------------------------------- /src/cli/src/Flow/CLI/Command/Traits/DBOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/cli/src/Flow/CLI/Command/Traits/DBOptions.php -------------------------------------------------------------------------------- /src/cli/src/Flow/CLI/DSL/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/cli/src/Flow/CLI/DSL/functions.php -------------------------------------------------------------------------------- /src/cli/src/Flow/CLI/Factory/CSVLoaderFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/cli/src/Flow/CLI/Factory/CSVLoaderFactory.php -------------------------------------------------------------------------------- /src/cli/src/Flow/CLI/Factory/ExtractorFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/cli/src/Flow/CLI/Factory/ExtractorFactory.php -------------------------------------------------------------------------------- /src/cli/src/Flow/CLI/Factory/LoaderFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/cli/src/Flow/CLI/Factory/LoaderFactory.php -------------------------------------------------------------------------------- /src/cli/src/Flow/CLI/Factory/XMLLoaderFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/cli/src/Flow/CLI/Factory/XMLLoaderFactory.php -------------------------------------------------------------------------------- /src/cli/src/Flow/CLI/FlowVersion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/cli/src/Flow/CLI/FlowVersion.php -------------------------------------------------------------------------------- /src/cli/src/Flow/CLI/Formatter/ValueFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/cli/src/Flow/CLI/Formatter/ValueFormatter.php -------------------------------------------------------------------------------- /src/cli/src/Flow/CLI/Options/ConfigOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/cli/src/Flow/CLI/Options/ConfigOption.php -------------------------------------------------------------------------------- /src/cli/src/Flow/CLI/Options/FileFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/cli/src/Flow/CLI/Options/FileFormat.php -------------------------------------------------------------------------------- /src/cli/src/Flow/CLI/Options/FileFormatOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/cli/src/Flow/CLI/Options/FileFormatOption.php -------------------------------------------------------------------------------- /src/cli/src/Flow/CLI/Options/FilePathOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/cli/src/Flow/CLI/Options/FilePathOption.php -------------------------------------------------------------------------------- /src/cli/src/Flow/CLI/Options/TypedOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/cli/src/Flow/CLI/Options/TypedOption.php -------------------------------------------------------------------------------- /src/cli/src/Flow/CLI/PipelineFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/cli/src/Flow/CLI/PipelineFactory.php -------------------------------------------------------------------------------- /src/cli/src/Flow/CLI/Style/FlowStyle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/cli/src/Flow/CLI/Style/FlowStyle.php -------------------------------------------------------------------------------- /src/core/etl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/LICENSE -------------------------------------------------------------------------------- /src/core/etl/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/composer.json -------------------------------------------------------------------------------- /src/core/etl/src/Flow/Calculator/Calculator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/Calculator/Calculator.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/Calculator/Rounding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/Calculator/Rounding.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/Clock/FakeClock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/Clock/FakeClock.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/Clock/SystemClock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/Clock/SystemClock.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Analyze.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Analyze.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Attribute/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Attribute/Module.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Attribute/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Attribute/Type.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Cache.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Cache/CacheIndex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Cache/CacheIndex.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Config.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Constraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Constraint.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/DSL/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/DSL/functions.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/DataFrame.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/DataFrame.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/DataFrameFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/DataFrameFactory.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Dataset/Memory/Unit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Dataset/Memory/Unit.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Dataset/Report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Dataset/Report.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Dataset/Statistics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Dataset/Statistics.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/ErrorHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/ErrorHandler.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Exception/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Exception/Exception.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Extractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Extractor.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Extractor/Limitable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Extractor/Limitable.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Extractor/Signal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Extractor/Signal.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Filesystem/SaveMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Filesystem/SaveMode.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Flow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Flow.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/FlowContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/FlowContext.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Formatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Formatter.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/All.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/All.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Any.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Any.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Append.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Append.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/ArrayGet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/ArrayGet.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/ArrayKeep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/ArrayKeep.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/ArrayKeys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/ArrayKeys.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/ArrayMerge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/ArrayMerge.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/ArraySort.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/ArraySort.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Ascii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Ascii.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Average.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Average.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Between.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Between.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Capitalize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Capitalize.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Cast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Cast.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Chunk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Chunk.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Coalesce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Coalesce.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Collect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Collect.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Combine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Combine.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Concat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Concat.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Contains.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Contains.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Count.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Count.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/DenseRank.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/DenseRank.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Divide.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Divide.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/EndsWith.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/EndsWith.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/EnsureEnd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/EnsureEnd.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Equals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Equals.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Exists.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Exists.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/First.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/First.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Functions.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Greatest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Greatest.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Hash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Hash.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/IndexOf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/IndexOf.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/IsEmpty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/IsEmpty.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/IsIn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/IsIn.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/IsNotNull.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/IsNotNull.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/IsNull.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/IsNull.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/IsNumeric.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/IsNumeric.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/IsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/IsType.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/IsUtf8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/IsUtf8.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/JsonDecode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/JsonDecode.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/JsonEncode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/JsonEncode.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Last.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Last.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Least.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Least.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/LessThan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/LessThan.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/ListSelect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/ListSelect.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Literal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Literal.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/MatchCases.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/MatchCases.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Max.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Max.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Min.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Min.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Minus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Minus.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Mod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Mod.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Multiply.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Multiply.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Not.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Not.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/NotEquals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/NotEquals.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/NotSame.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/NotSame.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Now.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Now.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/OnEach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/OnEach.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Optional.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Optional.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Parameter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Parameter.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Plus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Plus.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Power.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Power.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Prepend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Prepend.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Rank.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Rank.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Regex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Regex.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/RegexAll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/RegexAll.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/RegexMatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/RegexMatch.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Repeat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Repeat.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Reverse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Reverse.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Round.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Round.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/RowNumber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/RowNumber.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Same.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Same.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Sanitize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Sanitize.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Size.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Size.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Slug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Slug.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Split.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Split.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Sprintf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Sprintf.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/StartsWith.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/StartsWith.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/StrPad.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/StrPad.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/StrReplace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/StrReplace.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/StringFold.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/StringFold.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Sum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Sum.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/ToDate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/ToDate.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/ToDateTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/ToDateTime.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/ToLower.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/ToLower.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/ToTimeZone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/ToTimeZone.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/ToUpper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/ToUpper.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Trim.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Trim.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Trim/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Trim/Type.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Truncate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Truncate.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Ulid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Ulid.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Uuid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Uuid.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/When.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/When.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/Wordwrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/Wordwrap.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Function/XPath.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Function/XPath.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/GroupBy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/GroupBy.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Hash/Algorithm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Hash/Algorithm.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Hash/NativePHPHash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Hash/NativePHPHash.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Hash/PlainText.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Hash/PlainText.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Join/Comparison.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Join/Comparison.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Join/Comparison/All.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Join/Comparison/All.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Join/Comparison/Any.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Join/Comparison/Any.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Join/Expression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Join/Expression.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Join/Join.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Join/Join.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Loader.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Loader/ArrayLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Loader/ArrayLoader.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Loader/Closure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Loader/Closure.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Loader/FileLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Loader/FileLoader.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Loader/MemoryLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Loader/MemoryLoader.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Loader/RetryLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Loader/RetryLoader.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Loader/StreamLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Loader/StreamLoader.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Memory/ArrayMemory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Memory/ArrayMemory.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Memory/Memory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Memory/Memory.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Pipeline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Pipeline.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Pipeline/Optimizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Pipeline/Optimizer.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Pipeline/Pipes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Pipeline/Pipes.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Retry/DelayFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Retry/DelayFactory.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Retry/FailedRetry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Retry/FailedRetry.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Retry/RetriesRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Retry/RetriesRecord.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Retry/RetryStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Retry/RetryStrategy.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Row.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Row.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Row/Comparator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Row/Comparator.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Row/Entries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Row/Entries.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Row/Entry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Row/Entry.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Row/Entry/DateEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Row/Entry/DateEntry.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Row/Entry/EntryRef.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Row/Entry/EntryRef.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Row/Entry/EnumEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Row/Entry/EnumEntry.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Row/Entry/HTMLEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Row/Entry/HTMLEntry.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Row/Entry/JsonEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Row/Entry/JsonEntry.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Row/Entry/ListEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Row/Entry/ListEntry.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Row/Entry/MapEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Row/Entry/MapEntry.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Row/Entry/TimeEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Row/Entry/TimeEntry.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Row/Entry/UuidEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Row/Entry/UuidEntry.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Row/Entry/XMLEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Row/Entry/XMLEntry.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Row/EntryFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Row/EntryFactory.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Row/EntryReference.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Row/EntryReference.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Row/Reference.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Row/Reference.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Row/References.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Row/References.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Row/SortOrder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Row/SortOrder.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Rows.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Rows.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/RowsFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/RowsFactory.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Schema.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Schema/Definition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Schema/Definition.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Schema/Metadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Schema/Metadata.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/SchemaValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/SchemaValidator.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Sort/ExternalSort.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Sort/ExternalSort.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Sort/MemorySort.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Sort/MemorySort.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Sort/SortAlgorithms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Sort/SortAlgorithms.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/String/StringStyles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/String/StringStyles.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Time/Duration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Time/Duration.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Time/FakeSleep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Time/FakeSleep.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Time/Sleep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Time/Sleep.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Time/SystemSleep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Time/SystemSleep.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Transformation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Transformation.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Transformation/Drop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Transformation/Drop.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Transformations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Transformations.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Transformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Transformer.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/Window.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/Window.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/ETL/WithEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/ETL/WithEntry.php -------------------------------------------------------------------------------- /src/core/etl/src/Flow/Serializer/Serializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/core/etl/src/Flow/Serializer/Serializer.php -------------------------------------------------------------------------------- /src/extension/pg-query-ext/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/extension/pg-query-ext/Makefile -------------------------------------------------------------------------------- /src/extension/pg-query-ext/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/extension/pg-query-ext/README.md -------------------------------------------------------------------------------- /src/extension/pg-query-ext/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/extension/pg-query-ext/composer.json -------------------------------------------------------------------------------- /src/extension/pg-query-ext/ext/config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/extension/pg-query-ext/ext/config.m4 -------------------------------------------------------------------------------- /src/extension/pg-query-ext/ext/pg_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/extension/pg-query-ext/ext/pg_query.c -------------------------------------------------------------------------------- /src/extension/pg-query-ext/ext/pg_query.stub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/extension/pg-query-ext/ext/pg_query.stub.php -------------------------------------------------------------------------------- /src/extension/pg-query-ext/ext/php_pg_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/extension/pg-query-ext/ext/php_pg_query.h -------------------------------------------------------------------------------- /src/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/functions.php -------------------------------------------------------------------------------- /src/lib/array-dot/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/array-dot/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/lib/array-dot/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/array-dot/LICENSE -------------------------------------------------------------------------------- /src/lib/array-dot/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/array-dot/composer.json -------------------------------------------------------------------------------- /src/lib/azure-sdk/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/azure-sdk/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/lib/azure-sdk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/azure-sdk/LICENSE -------------------------------------------------------------------------------- /src/lib/azure-sdk/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/azure-sdk/composer.json -------------------------------------------------------------------------------- /src/lib/doctrine-dbal-bulk/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/doctrine-dbal-bulk/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/lib/doctrine-dbal-bulk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/doctrine-dbal-bulk/LICENSE -------------------------------------------------------------------------------- /src/lib/doctrine-dbal-bulk/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/doctrine-dbal-bulk/composer.json -------------------------------------------------------------------------------- /src/lib/dremel/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/dremel/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/lib/dremel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/dremel/LICENSE -------------------------------------------------------------------------------- /src/lib/dremel/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/dremel/composer.json -------------------------------------------------------------------------------- /src/lib/dremel/src/Flow/Dremel/Dremel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/dremel/src/Flow/Dremel/Dremel.php -------------------------------------------------------------------------------- /src/lib/filesystem/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/filesystem/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/lib/filesystem/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/filesystem/LICENSE -------------------------------------------------------------------------------- /src/lib/filesystem/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/filesystem/composer.json -------------------------------------------------------------------------------- /src/lib/filesystem/src/Flow/Filesystem/Path.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/filesystem/src/Flow/Filesystem/Path.php -------------------------------------------------------------------------------- /src/lib/parquet-viewer/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/parquet-viewer/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/lib/parquet-viewer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/parquet-viewer/LICENSE -------------------------------------------------------------------------------- /src/lib/parquet-viewer/bin/parquet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/parquet-viewer/bin/parquet.php -------------------------------------------------------------------------------- /src/lib/parquet-viewer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/parquet-viewer/composer.json -------------------------------------------------------------------------------- /src/lib/parquet/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/parquet/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/lib/parquet/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/parquet/LICENSE -------------------------------------------------------------------------------- /src/lib/parquet/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/parquet/composer.json -------------------------------------------------------------------------------- /src/lib/parquet/resources/python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/parquet/resources/python/.gitignore -------------------------------------------------------------------------------- /src/lib/parquet/resources/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/parquet/resources/python/README.md -------------------------------------------------------------------------------- /src/lib/parquet/resources/python/output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/parquet/resources/python/requirements.txt: -------------------------------------------------------------------------------- 1 | pandas 2 | pyarrow 3 | faker -------------------------------------------------------------------------------- /src/lib/parquet/src/Flow/Parquet/ByteOrder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/parquet/src/Flow/Parquet/ByteOrder.php -------------------------------------------------------------------------------- /src/lib/parquet/src/Flow/Parquet/Consts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/parquet/src/Flow/Parquet/Consts.php -------------------------------------------------------------------------------- /src/lib/parquet/src/Flow/Parquet/DataSize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/parquet/src/Flow/Parquet/DataSize.php -------------------------------------------------------------------------------- /src/lib/parquet/src/Flow/Parquet/Option.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/parquet/src/Flow/Parquet/Option.php -------------------------------------------------------------------------------- /src/lib/parquet/src/Flow/Parquet/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/parquet/src/Flow/Parquet/Options.php -------------------------------------------------------------------------------- /src/lib/parquet/src/Flow/Parquet/Reader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/parquet/src/Flow/Parquet/Reader.php -------------------------------------------------------------------------------- /src/lib/parquet/src/Flow/Parquet/Writer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/parquet/src/Flow/Parquet/Writer.php -------------------------------------------------------------------------------- /src/lib/parquet/src/Flow/Parquet/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/parquet/src/Flow/Parquet/functions.php -------------------------------------------------------------------------------- /src/lib/parquet/src/stubs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/parquet/src/stubs.php -------------------------------------------------------------------------------- /src/lib/pg-query/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/pg-query/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/lib/pg-query/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/pg-query/LICENSE -------------------------------------------------------------------------------- /src/lib/pg-query/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/pg-query/composer.json -------------------------------------------------------------------------------- /src/lib/pg-query/src/Flow/PgQuery/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/pg-query/src/Flow/PgQuery/Parser.php -------------------------------------------------------------------------------- /src/lib/pg-query/src/stubs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/pg-query/src/stubs.php -------------------------------------------------------------------------------- /src/lib/snappy/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/snappy/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/lib/snappy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/snappy/LICENSE -------------------------------------------------------------------------------- /src/lib/snappy/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/snappy/composer.json -------------------------------------------------------------------------------- /src/lib/snappy/polyfill.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/snappy/polyfill.php -------------------------------------------------------------------------------- /src/lib/snappy/src/Flow/Snappy/Snappy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/snappy/src/Flow/Snappy/Snappy.php -------------------------------------------------------------------------------- /src/lib/types/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/types/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/lib/types/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/types/LICENSE -------------------------------------------------------------------------------- /src/lib/types/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/types/composer.json -------------------------------------------------------------------------------- /src/lib/types/src/Flow/Types/DSL/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/types/src/Flow/Types/DSL/functions.php -------------------------------------------------------------------------------- /src/lib/types/src/Flow/Types/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/types/src/Flow/Types/Type.php -------------------------------------------------------------------------------- /src/lib/types/src/Flow/Types/Type/Types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/types/src/Flow/Types/Type/Types.php -------------------------------------------------------------------------------- /src/lib/types/src/Flow/Types/Value/Uuid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/lib/types/src/Flow/Types/Value/Uuid.php -------------------------------------------------------------------------------- /src/tools/documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/tools/documentation/README.md -------------------------------------------------------------------------------- /src/tools/homebrew/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/tools/homebrew/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/tools/homebrew/Formula/flow-php.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/tools/homebrew/Formula/flow-php.rb -------------------------------------------------------------------------------- /src/tools/homebrew/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/tools/homebrew/LICENSE -------------------------------------------------------------------------------- /src/tools/homebrew/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/src/tools/homebrew/README.md -------------------------------------------------------------------------------- /terraform/cloudflare/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/terraform/cloudflare/.gitignore -------------------------------------------------------------------------------- /terraform/cloudflare/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/terraform/cloudflare/README.md -------------------------------------------------------------------------------- /terraform/cloudflare/dns.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/terraform/cloudflare/dns.tf -------------------------------------------------------------------------------- /terraform/cloudflare/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/terraform/cloudflare/main.tf -------------------------------------------------------------------------------- /terraform/cloudflare/notifications.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/terraform/cloudflare/notifications.tf -------------------------------------------------------------------------------- /terraform/cloudflare/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/terraform/cloudflare/outputs.tf -------------------------------------------------------------------------------- /terraform/cloudflare/provider.tf: -------------------------------------------------------------------------------- 1 | provider "cloudflare" { 2 | } 3 | -------------------------------------------------------------------------------- /terraform/cloudflare/r2.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/terraform/cloudflare/r2.tf -------------------------------------------------------------------------------- /terraform/cloudflare/turnstile.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/terraform/cloudflare/turnstile.tf -------------------------------------------------------------------------------- /terraform/cloudflare/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/terraform/cloudflare/variables.tf -------------------------------------------------------------------------------- /terraform/cloudflare/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/terraform/cloudflare/versions.tf -------------------------------------------------------------------------------- /terraform/cloudflare/waf.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/terraform/cloudflare/waf.tf -------------------------------------------------------------------------------- /terraform/cloudflare/workers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/terraform/cloudflare/workers.tf -------------------------------------------------------------------------------- /terraform/cloudflare/workers/.dev.vars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/terraform/cloudflare/workers/.dev.vars.example -------------------------------------------------------------------------------- /terraform/cloudflare/workers/.gitignore: -------------------------------------------------------------------------------- 1 | .dev.vars 2 | .wrangler/ 3 | node_modules/ -------------------------------------------------------------------------------- /terraform/cloudflare/workers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/terraform/cloudflare/workers/README.md -------------------------------------------------------------------------------- /terraform/cloudflare/workers/snippet-upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/terraform/cloudflare/workers/snippet-upload.js -------------------------------------------------------------------------------- /terraform/cloudflare/workers/wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/terraform/cloudflare/workers/wrangler.toml -------------------------------------------------------------------------------- /tools/blackfire/.gitignore: -------------------------------------------------------------------------------- 1 | vendor -------------------------------------------------------------------------------- /tools/blackfire/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/tools/blackfire/composer.json -------------------------------------------------------------------------------- /tools/blackfire/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/tools/blackfire/composer.lock -------------------------------------------------------------------------------- /tools/box/.gitignore: -------------------------------------------------------------------------------- 1 | vendor -------------------------------------------------------------------------------- /tools/box/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/tools/box/composer.json -------------------------------------------------------------------------------- /tools/box/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/tools/box/composer.lock -------------------------------------------------------------------------------- /tools/cs-fixer/.gitignore: -------------------------------------------------------------------------------- 1 | vendor -------------------------------------------------------------------------------- /tools/cs-fixer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/tools/cs-fixer/composer.json -------------------------------------------------------------------------------- /tools/cs-fixer/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/tools/cs-fixer/composer.lock -------------------------------------------------------------------------------- /tools/infection/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | !phpunit.xml -------------------------------------------------------------------------------- /tools/infection/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/tools/infection/composer.json -------------------------------------------------------------------------------- /tools/infection/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/tools/infection/composer.lock -------------------------------------------------------------------------------- /tools/infection/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/tools/infection/phpunit.xml -------------------------------------------------------------------------------- /tools/monorepo/.gitignore: -------------------------------------------------------------------------------- 1 | vendor -------------------------------------------------------------------------------- /tools/monorepo/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/tools/monorepo/composer.json -------------------------------------------------------------------------------- /tools/monorepo/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/tools/monorepo/composer.lock -------------------------------------------------------------------------------- /tools/phpbench/.gitignore: -------------------------------------------------------------------------------- 1 | vendor -------------------------------------------------------------------------------- /tools/phpbench/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/tools/phpbench/composer.json -------------------------------------------------------------------------------- /tools/phpbench/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/tools/phpbench/composer.lock -------------------------------------------------------------------------------- /tools/phpdocumentor/.gitignore: -------------------------------------------------------------------------------- 1 | vendor -------------------------------------------------------------------------------- /tools/phpdocumentor/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/tools/phpdocumentor/composer.json -------------------------------------------------------------------------------- /tools/phpdocumentor/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/tools/phpdocumentor/composer.lock -------------------------------------------------------------------------------- /tools/phpstan/.gitignore: -------------------------------------------------------------------------------- 1 | vendor -------------------------------------------------------------------------------- /tools/phpstan/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/tools/phpstan/composer.json -------------------------------------------------------------------------------- /tools/phpstan/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/tools/phpstan/composer.lock -------------------------------------------------------------------------------- /tools/phpunit/.gitignore: -------------------------------------------------------------------------------- 1 | vendor -------------------------------------------------------------------------------- /tools/phpunit/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/tools/phpunit/composer.json -------------------------------------------------------------------------------- /tools/phpunit/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/tools/phpunit/composer.lock -------------------------------------------------------------------------------- /tools/rector/.gitignore: -------------------------------------------------------------------------------- 1 | vendor -------------------------------------------------------------------------------- /tools/rector/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/tools/rector/composer.json -------------------------------------------------------------------------------- /tools/rector/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/tools/rector/composer.lock -------------------------------------------------------------------------------- /wasm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/wasm/.gitignore -------------------------------------------------------------------------------- /wasm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/wasm/README.md -------------------------------------------------------------------------------- /wasm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/wasm/build.sh -------------------------------------------------------------------------------- /wasm/pib_eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/wasm/pib_eval.c -------------------------------------------------------------------------------- /web/landing/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/.env -------------------------------------------------------------------------------- /web/landing/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/.env.test -------------------------------------------------------------------------------- /web/landing/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/.gitignore -------------------------------------------------------------------------------- /web/landing/.php-version: -------------------------------------------------------------------------------- 1 | 8.2 -------------------------------------------------------------------------------- /web/landing/.symfony.local.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/.symfony.local.yaml -------------------------------------------------------------------------------- /web/landing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/README.md -------------------------------------------------------------------------------- /web/landing/assets/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/app.js -------------------------------------------------------------------------------- /web/landing/assets/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/bootstrap.js -------------------------------------------------------------------------------- /web/landing/assets/controllers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/controllers.json -------------------------------------------------------------------------------- /web/landing/assets/images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/images/banner.png -------------------------------------------------------------------------------- /web/landing/assets/images/banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/images/banner.svg -------------------------------------------------------------------------------- /web/landing/assets/images/elephant.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/images/elephant.svg -------------------------------------------------------------------------------- /web/landing/assets/images/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/images/favicons/favicon.ico -------------------------------------------------------------------------------- /web/landing/assets/images/icons/api.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/images/icons/api.svg -------------------------------------------------------------------------------- /web/landing/assets/images/icons/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/images/icons/arrow-right.svg -------------------------------------------------------------------------------- /web/landing/assets/images/icons/arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/images/icons/arrow-up.svg -------------------------------------------------------------------------------- /web/landing/assets/images/icons/chart-bar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/images/icons/chart-bar.svg -------------------------------------------------------------------------------- /web/landing/assets/images/icons/checklist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/images/icons/checklist.svg -------------------------------------------------------------------------------- /web/landing/assets/images/icons/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/images/icons/close.svg -------------------------------------------------------------------------------- /web/landing/assets/images/icons/code-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/images/icons/code-active.svg -------------------------------------------------------------------------------- /web/landing/assets/images/icons/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/images/icons/code.svg -------------------------------------------------------------------------------- /web/landing/assets/images/icons/cookie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/images/icons/cookie.svg -------------------------------------------------------------------------------- /web/landing/assets/images/icons/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/images/icons/copy.svg -------------------------------------------------------------------------------- /web/landing/assets/images/icons/data-flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/images/icons/data-flow.svg -------------------------------------------------------------------------------- /web/landing/assets/images/icons/date.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/images/icons/date.svg -------------------------------------------------------------------------------- /web/landing/assets/images/icons/discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/images/icons/discord.svg -------------------------------------------------------------------------------- /web/landing/assets/images/icons/external.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/images/icons/external.svg -------------------------------------------------------------------------------- /web/landing/assets/images/icons/extract.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/images/icons/extract.svg -------------------------------------------------------------------------------- /web/landing/assets/images/icons/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/images/icons/file.svg -------------------------------------------------------------------------------- /web/landing/assets/images/icons/flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/images/icons/flow.svg -------------------------------------------------------------------------------- /web/landing/assets/images/icons/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/images/icons/folder.svg -------------------------------------------------------------------------------- /web/landing/assets/images/icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/images/icons/github.svg -------------------------------------------------------------------------------- /web/landing/assets/images/icons/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/images/icons/heart.svg -------------------------------------------------------------------------------- /web/landing/assets/images/icons/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/images/icons/help.svg -------------------------------------------------------------------------------- /web/landing/assets/images/icons/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/images/icons/link.svg -------------------------------------------------------------------------------- /web/landing/assets/images/icons/load.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/images/icons/load.svg -------------------------------------------------------------------------------- /web/landing/assets/images/icons/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/images/icons/menu.svg -------------------------------------------------------------------------------- /web/landing/assets/images/icons/package.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/images/icons/package.svg -------------------------------------------------------------------------------- /web/landing/assets/images/icons/pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/images/icons/pencil.svg -------------------------------------------------------------------------------- /web/landing/assets/images/icons/play-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/images/icons/play-active.svg -------------------------------------------------------------------------------- /web/landing/assets/images/icons/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/images/icons/play.svg -------------------------------------------------------------------------------- /web/landing/assets/images/icons/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/images/icons/refresh.svg -------------------------------------------------------------------------------- /web/landing/assets/images/icons/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/images/icons/share.svg -------------------------------------------------------------------------------- /web/landing/assets/images/icons/tools.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/images/icons/tools.svg -------------------------------------------------------------------------------- /web/landing/assets/images/icons/transform.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/images/icons/transform.svg -------------------------------------------------------------------------------- /web/landing/assets/images/icons/upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/images/icons/upload.svg -------------------------------------------------------------------------------- /web/landing/assets/images/icons/users-group.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/images/icons/users-group.svg -------------------------------------------------------------------------------- /web/landing/assets/images/icons/zoom-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/images/icons/zoom-in.svg -------------------------------------------------------------------------------- /web/landing/assets/images/icons/zoom-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/images/icons/zoom-out.svg -------------------------------------------------------------------------------- /web/landing/assets/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/images/logo.svg -------------------------------------------------------------------------------- /web/landing/assets/images/sponsors/sentry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/images/sponsors/sentry.svg -------------------------------------------------------------------------------- /web/landing/assets/models/Violation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/models/Violation.js -------------------------------------------------------------------------------- /web/landing/assets/models/Violations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/models/Violations.js -------------------------------------------------------------------------------- /web/landing/assets/styles/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/styles/app.css -------------------------------------------------------------------------------- /web/landing/assets/styles/changelog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/styles/changelog.css -------------------------------------------------------------------------------- /web/landing/assets/wasm/.gitignore: -------------------------------------------------------------------------------- 1 | !vendor -------------------------------------------------------------------------------- /web/landing/assets/wasm/bin/cs-fixer.php.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/wasm/bin/cs-fixer.php.wasm -------------------------------------------------------------------------------- /web/landing/assets/wasm/code.php.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/wasm/code.php.wasm -------------------------------------------------------------------------------- /web/landing/assets/wasm/data/orders.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/wasm/data/orders.csv -------------------------------------------------------------------------------- /web/landing/assets/wasm/data/orders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/wasm/data/orders.json -------------------------------------------------------------------------------- /web/landing/assets/wasm/data/orders.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/wasm/data/orders.parquet -------------------------------------------------------------------------------- /web/landing/assets/wasm/data/orders.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/wasm/data/orders.xml -------------------------------------------------------------------------------- /web/landing/assets/wasm/flow.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/wasm/flow.phar -------------------------------------------------------------------------------- /web/landing/assets/wasm/php.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/wasm/php.js -------------------------------------------------------------------------------- /web/landing/assets/wasm/php.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/wasm/php.wasm -------------------------------------------------------------------------------- /web/landing/assets/wasm/phpcsfixer.php.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/wasm/phpcsfixer.php.wasm -------------------------------------------------------------------------------- /web/landing/assets/wasm/tools/flow.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/wasm/tools/flow.phar -------------------------------------------------------------------------------- /web/landing/assets/wasm/tools/php-cs-fixer.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/assets/wasm/tools/php-cs-fixer.phar -------------------------------------------------------------------------------- /web/landing/bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/bin/console -------------------------------------------------------------------------------- /web/landing/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/composer.json -------------------------------------------------------------------------------- /web/landing/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/composer.lock -------------------------------------------------------------------------------- /web/landing/config/bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/config/bundles.php -------------------------------------------------------------------------------- /web/landing/config/packages/asset_mapper.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/config/packages/asset_mapper.yaml -------------------------------------------------------------------------------- /web/landing/config/packages/framework.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/config/packages/framework.yaml -------------------------------------------------------------------------------- /web/landing/config/packages/monolog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/config/packages/monolog.yaml -------------------------------------------------------------------------------- /web/landing/config/packages/presta_sitemap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/config/packages/presta_sitemap.yaml -------------------------------------------------------------------------------- /web/landing/config/packages/routing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/config/packages/routing.yaml -------------------------------------------------------------------------------- /web/landing/config/packages/symfonycasts_tailwind.yaml: -------------------------------------------------------------------------------- 1 | symfonycasts_tailwind: 2 | binary_version: 'v3.4.17' -------------------------------------------------------------------------------- /web/landing/config/packages/twig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/config/packages/twig.yaml -------------------------------------------------------------------------------- /web/landing/config/packages/web_profiler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/config/packages/web_profiler.yaml -------------------------------------------------------------------------------- /web/landing/config/preload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/config/preload.php -------------------------------------------------------------------------------- /web/landing/config/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/config/routes.yaml -------------------------------------------------------------------------------- /web/landing/config/routes/framework.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/config/routes/framework.yaml -------------------------------------------------------------------------------- /web/landing/config/routes/web_profiler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/config/routes/web_profiler.yaml -------------------------------------------------------------------------------- /web/landing/config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/config/services.yaml -------------------------------------------------------------------------------- /web/landing/docs/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/docs/examples.md -------------------------------------------------------------------------------- /web/landing/docs/playground.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/docs/playground.md -------------------------------------------------------------------------------- /web/landing/docs/playground/code-editor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/docs/playground/code-editor.md -------------------------------------------------------------------------------- /web/landing/docs/playground/playground-help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/docs/playground/playground-help.md -------------------------------------------------------------------------------- /web/landing/docs/playground/playground-reset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/docs/playground/playground-reset.md -------------------------------------------------------------------------------- /web/landing/docs/playground/playground-run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/docs/playground/playground-run.md -------------------------------------------------------------------------------- /web/landing/docs/playground/playground-share.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/docs/playground/playground-share.md -------------------------------------------------------------------------------- /web/landing/docs/playground/playground-tabs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/docs/playground/playground-tabs.md -------------------------------------------------------------------------------- /web/landing/docs/playground/playground.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/docs/playground/playground.md -------------------------------------------------------------------------------- /web/landing/docs/playground/turnstile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/docs/playground/turnstile.md -------------------------------------------------------------------------------- /web/landing/docs/playground/wasm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/docs/playground/wasm.md -------------------------------------------------------------------------------- /web/landing/drivers/.gitignore: -------------------------------------------------------------------------------- 1 | chromedriver -------------------------------------------------------------------------------- /web/landing/importmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/importmap.php -------------------------------------------------------------------------------- /web/landing/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/phpunit.xml -------------------------------------------------------------------------------- /web/landing/public/BingSiteAuth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/public/BingSiteAuth.xml -------------------------------------------------------------------------------- /web/landing/public/CNAME: -------------------------------------------------------------------------------- 1 | flow-php.com -------------------------------------------------------------------------------- /web/landing/public/_headers: -------------------------------------------------------------------------------- 1 | /* 2 | ! Link 3 | -------------------------------------------------------------------------------- /web/landing/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/public/index.php -------------------------------------------------------------------------------- /web/landing/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/public/robots.txt -------------------------------------------------------------------------------- /web/landing/resources/api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/resources/api.json -------------------------------------------------------------------------------- /web/landing/resources/dsl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/resources/dsl.json -------------------------------------------------------------------------------- /web/landing/src/Flow/Website/Blog/Post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/src/Flow/Website/Blog/Post.php -------------------------------------------------------------------------------- /web/landing/src/Flow/Website/Blog/Posts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/src/Flow/Website/Blog/Posts.php -------------------------------------------------------------------------------- /web/landing/src/Flow/Website/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/src/Flow/Website/Kernel.php -------------------------------------------------------------------------------- /web/landing/src/Flow/Website/Service/Github.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/src/Flow/Website/Service/Github.php -------------------------------------------------------------------------------- /web/landing/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/tailwind.config.js -------------------------------------------------------------------------------- /web/landing/templates/base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/templates/base.html.twig -------------------------------------------------------------------------------- /web/landing/templates/blog/post.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/templates/blog/post.html.twig -------------------------------------------------------------------------------- /web/landing/templates/blog/posts.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/templates/blog/posts.html.twig -------------------------------------------------------------------------------- /web/landing/templates/example/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/templates/example/index.html.twig -------------------------------------------------------------------------------- /web/landing/templates/main/_hero.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/templates/main/_hero.html.twig -------------------------------------------------------------------------------- /web/landing/templates/main/changelog.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/templates/main/changelog.html.twig -------------------------------------------------------------------------------- /web/landing/templates/main/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/templates/main/index.html.twig -------------------------------------------------------------------------------- /web/landing/templates/main/sponsor.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/templates/main/sponsor.html.twig -------------------------------------------------------------------------------- /web/landing/tests/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/tests/autoload.php -------------------------------------------------------------------------------- /web/landing/tests/router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/tests/router.php -------------------------------------------------------------------------------- /web/landing/tools/phpunit/.gitignore: -------------------------------------------------------------------------------- 1 | vendor -------------------------------------------------------------------------------- /web/landing/tools/phpunit/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/tools/phpunit/composer.json -------------------------------------------------------------------------------- /web/landing/tools/phpunit/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flow-php/flow/HEAD/web/landing/tools/phpunit/composer.lock --------------------------------------------------------------------------------