245 Commits

Author SHA1 Message Date
Johannes Wachter
6a45db5ef5 [Store] Split query string into words for TextQuery and HybridQuery in Retriever 2026-03-17 21:42:47 +01:00
Christopher Hertel
174012d169 Add features of #1778 and #1763 to changelog 2026-03-16 21:38:51 +01:00
Christopher Hertel
b8aa1ca5b8 feature #1778 [Store] Introduce batch processing in DistanceCalculator (Guikingone)
This PR was merged into the main branch.

Discussion
----------

[Store] Introduce batch processing in `DistanceCalculator`

| Q             | A
| ------------- | ---
| Bug fix?      | no
| New feature?  | yes
| Docs?         | yes
| Issues        | --
| License       | MIT

Following #1770, local stores might be used to store / retrieve vectors, problem is, the current implementation perform the sorting strategy through the whole dataset, this PR aims to introduce a "batch and reduce" approach, `VectorDocument`s are handled per batch (default size to `100`) and returned in smaller size if `maxItems` is set.

The implementation is inspired by https://x.com/JeffDean/status/1997854093239595503.

Commits
-------

293df7d9 feat(store): allow to sort documents as batches
2026-03-16 21:28:14 +01:00
Johannes Wachter
477439c00c [Store] Skip missing toctree entries gracefully 2026-03-16 21:13:23 +01:00
Guillaume Loulier
280cc84477 feat(store): allow to sort documents as batches 2026-03-16 18:12:35 +01:00
Christopher Hertel
af632c6249 Consistently use symfony/event-dispatcher-contracts 2026-03-15 23:05:44 +01:00
Christopher Hertel
bc8181431f bug #1772 [Store] Fix RstToctreeLoader trailing-slash toctree entry resolution (wachterjohannes)
This PR was merged into the main branch.

Discussion
----------

[Store] Fix RstToctreeLoader trailing-slash toctree entry resolution

  | Q             | A
  | ------------- | ---
  | Bug fix?      | yes
  | New feature?  | no
  | Docs?         | no
  | Issues        | Fix #1771
  | License       | MIT

## Summary

  Trailing-slash toctree entries like `components/` are valid Sphinx syntax and resolve to `components/index.rst`. The
  loader now handles this convention instead of producing the invalid path `components/.rst`.

Commits
-------

1bd2a72e [Store] Fix RstToctreeLoader trailing-slash toctree entry resolution
2026-03-15 22:00:09 +01:00
Johannes Wachter
43ebaab9fc [Store] Fix RstToctreeLoader trailing-slash toctree entry resolution
Trailing-slash toctree entries like `components/` are valid Sphinx
syntax and resolve to `components/index.rst`. The loader now handles
this convention instead of producing the invalid path `components/.rst`.
2026-03-15 21:43:33 +01:00
Johannes Wachter
5776f37099 [Store] Add PreQueryEvent for query enhancement 2026-03-15 20:10:17 +01:00
Johannes Wachter
2ab5e84e67 [Store][Platform] Add platform-level reranking and hybrid retriever 2026-03-14 16:07:15 +01:00
Johannes Wachter
d92c21f5b1 [Store] Add RstToctreeLoader for RST documentation parsing 2026-03-14 00:38:34 +01:00
Christopher Hertel
9b6cc8a5bd Bump versions for v0.6 v0.6.0 2026-03-05 00:27:55 +01:00
Johannes Wachter
8fd580222b [Store] Add SummaryGeneratorTransformer for LLM-based document summaries
Add a document transformer that uses the Platform to generate concise
summaries and stores them in document metadata. Supports dual-indexing
mode where an additional TextDocument with the summary as content is
yielded alongside the original.
2026-02-28 21:29:26 +01:00
Christopher Hertel
38df638cd0 Prepare for v0.5.0 v0.5.0 2026-02-19 19:34:43 +01:00
Christopher Hertel
435392b951 Prepare for release v0.4.0 v0.4.0 2026-02-18 23:56:14 +01:00
Santiago San Martin
5f935922d9 [AI Bundle][MCP Bundle][Chat][Store] add ResetInterface to prevent memory leaks 2026-02-18 09:13:19 -03:00
Oskar Stark
a86e223342 Bump phpunit/phpunit to ^11.5.53 across all components 2026-02-18 11:36:38 +01:00
Christopher Hertel
1aa0c583b8 Keep lazy iterator alive 2026-02-16 21:27:32 +01:00
Johannes Wachter
6f0a3a902a [Store] Add query abstraction with filter support 2026-02-16 20:33:28 +01:00
Christopher Hertel
55a8fbff11 minor #1563 [Store] Introduce integration tests for stores (chr-hertel)
This PR was merged into the main branch.

Discussion
----------

[Store] Introduce integration tests for stores

| Q             | A
| ------------- | ---
| Bug fix?      | no
| New feature?  | no
| Docs?         | no
| Issues        |
| License       | MIT

Want to tackle a few things here
* `examples/commands/store.php` is not an example, but integration tests
  back then we went for the synergy about the docker setup, but with that `remove` PR it gets a bit more important for tests
* store tests are by far the slowest in our pipeline since we bring up all the container together and run it sequentially
* bring in a store conformance test with a base integration test

Initially built by Claude

Commits
-------

0e20e22f Introduce integration tests for stores
2026-02-13 23:23:09 +01:00
Christopher Hertel
badf72760f Introduce integration tests for stores 2026-02-13 23:12:15 +01:00
bigdevlarry
7f944eef14 [Store] Add configurable json file loader 2026-02-13 21:48:38 +00:00
Christopher Hertel
d2170e29c4 feature #1537 [Store] Add CSV loader to load data from CSV file as text documents (RamyHakam)
This PR was squashed before being merged into the main branch.

Discussion
----------

[Store] Add CSV loader to load data from CSV file as text documents

| Q             | A
| ------------- | ---
| Bug fix?      | no
| New feature?  | yes <!-- please update src/**/CHANGELOG.md files -->
| Docs?         | no <!-- required for new features -->
| Issues        | ---- <!-- prefix each issue number with "Fix #", no need to create an issue if none exist, explain below instead -->
| License       | MIT

This PR adds a new `CsvLoader` class to the Store component for loading documents from CSV files. Each row in the CSV becomes a TextDocument, with configurable column mappings for content, ID, and metadata.

  Features:
  - Configurable content column (by name or index)
  - Optional ID column mapping (generates UUID if not specified)
  - Metadata columns extraction
  - Custom delimiter, enclosure, and escape characters
  - Header row support (enabled by default)
  - Runtime options override via load() method
  - Automatic skipping of empty content rows
  - Proper handling of quoted content with commas and embedded quotes
  ```php
  Usage example:
  $loader = new CsvLoader(
      contentColumn: 'content',
      idColumn: 'id',
      metadataColumns: ['author', 'category']
  );

  foreach ($loader->load('/path/to/data.csv') as $document) {
      // $document is a TextDocument with content, ID, and metadata
  }
```

Commits
-------

982e8274 [Store] Add CSV loader to load data from CSV file as text documents
2026-02-13 17:32:37 +01:00
Ramy Hakam
319f2cb881 [Store] Add CSV loader to load data from CSV file as text documents 2026-02-13 17:32:33 +01:00
Guillaume Loulier
9d4c88a1a2 feat(store): Add MarkdownLoader 2026-02-13 16:40:55 +01:00
Christopher Hertel
88964c9c11 Replace public properties by private+getters for BC promise 2026-02-13 16:00:48 +01:00
Christopher Hertel
d90745d750 minor #1575 [Store] Remove UID as type from Documents ID (chr-hertel)
This PR was merged into the main branch.

Discussion
----------

[Store] Remove UID as type from Documents ID

| Q             | A
| ------------- | ---
| Bug fix?      | no
| New feature?  | no
| Docs?         | no
| Issues        |
| License       | MIT

This might be a bit controversial, but while working on #1563 I stumbled on a few store implementations strongly assuming that `id` is a `Uuid` even tho we opened it to `string|int|Uuid` with #1397 - and i still thinkg `int|string` is def needed here.

Commits
-------

fdbecc55 Remove UID as type from Documents ID
2026-02-13 15:53:36 +01:00
Christopher Hertel
14ffae53ae Upgrade Symfony dev dependencies in Store 2026-02-13 14:33:05 +01:00
Christopher Hertel
d1a03a9d32 Remove UID as type from Documents ID 2026-02-09 22:49:57 +01:00
Christopher Hertel
c05aad7011 [AI Bundle] Add DocumentIndexer support when no loader is configured 2026-02-05 14:39:40 +01:00
Christopher Hertel
debc193fd2 feature #1490 [Store][InMemory] Implement remove() method (chr-hertel)
This PR was merged into the main branch.

Discussion
----------

[Store][InMemory] Implement remove() method

| Q             | A
| ------------- | ---
| Bug fix?      | no
| New feature?  | yes
| Docs?         | no
| Issues        | Fix #1469
| License       | MIT

Implements document removal by ID for the InMemory store.

## Implementation

- Accepts `string|array` of document IDs
- Filters internal documents array and re-indexes with `array_values()` to prevent gaps
- Validates `$options` parameter (throws `InvalidArgumentException` if non-empty, consistent with other methods)
- Casts document IDs to strings for comparison

## Usage

```php
$store = new Store();
$store->add([
    new VectorDocument($id1, new Vector([0.1, 0.1, 0.5])),
    new VectorDocument($id2, new Vector([0.7, -0.3, 0.0])),
]);

// Remove single document
$store->remove((string) $id1);

// Remove multiple documents
$store->remove([(string) $id1, (string) $id2]);
```

## Tests

- Single/multiple document removal
- Non-existent ID handling
- Array re-indexing verification
- Options validation

> [!WARNING]
>
> <details>
> <summary>Firewall rules blocked me from connecting to one or more addresses (expand for details)</summary>
>
> #### I tried to connect to the following addresses, but was blocked by firewall rules:
>
> - `0e82bdfe85`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q9Ob4s /usr/bin/composer install --no-interaction rgo/bin/git --git-dir git git git tag en git } --quiet --verify rgo/bin/git git` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/zgDJHO /usr/bin/composer install --no-interaction --prefer-dist en git 2bc56493^{commitgithub.accesstoken sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-dir&#39; git tnet/tools/git 2636b6de493846e1git git /bin/sh git` (http block)
> - `fcf91eb643`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/4RMiGf /usr/bin/composer install --no-interaction t en origin ndor/bin/git git rev- --git-dir git c7f180cab83036ed26714bb0^{commit} ig&#39; &#39;github.accegit git } sh` (http block)
> - `c37c58bdd4`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/4RMiGf /usr/bin/composer install --no-interaction t en origin ndor/bin/git git rev- --git-dir git c7f180cab83036ed26714bb0^{commit} ig&#39; &#39;github.accegit git } sh` (http block)
> - `a5666a80c1`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q9Ob4s /usr/bin/composer install --no-interaction rgo/bin/git --git-dir git git git tag en git } --quiet --verify rgo/bin/git git` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/zgDJHO /usr/bin/composer install --no-interaction --prefer-dist en git 2bc56493^{commitgithub.accesstoken sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-dir&#39; git tnet/tools/git 2636b6de493846e1git git /bin/sh git` (http block)
> - `b2bed4734f`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q9Ob4s /usr/bin/composer install --no-interaction rgo/bin/git --git-dir git git git tag en git } --quiet --verify rgo/bin/git git` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/zgDJHO /usr/bin/composer install --no-interaction --prefer-dist en git 2bc56493^{commitgithub.accesstoken sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-dir&#39; git tnet/tools/git 2636b6de493846e1git git /bin/sh git` (http block)
> - `6c19255616`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q9Ob4s /usr/bin/composer install --no-interaction rgo/bin/git --git-dir git git git tag en git } --quiet --verify rgo/bin/git git` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/zgDJHO /usr/bin/composer install --no-interaction --prefer-dist en git 2bc56493^{commitgithub.accesstoken sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-dir&#39; git tnet/tools/git 2636b6de493846e1git git /bin/sh git` (http block)
> - `c534666659`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q9Ob4s /usr/bin/composer install --no-interaction rgo/bin/git --git-dir git git git tag en git } --quiet --verify rgo/bin/git git` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/zgDJHO /usr/bin/composer install --no-interaction --prefer-dist en git 2bc56493^{commitgithub.accesstoken sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-dir&#39; git tnet/tools/git 2636b6de493846e1git git /bin/sh git` (http block)
> - `459c2f5dd3`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q9Ob4s /usr/bin/composer install --no-interaction rgo/bin/git --git-dir git git git tag en git } --quiet --verify rgo/bin/git git` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uopJ4j /usr/bin/composer install --no-interaction 76d9ef32^{commit} --quiet --verify nfig/composer/ve--git-dir /usr/lib/git-core/git fetc --prune --multiple /home/REDACTED/.local/bin/git exec &#39;git&#39; &#39;brangit git /home/REDACTED/.lo--git-dir git` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/zgDJHO /usr/bin/composer install --no-interaction --prefer-dist en git 2bc56493^{commitgithub.accesstoken sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-dir&#39; git tnet/tools/git 2636b6de493846e1git git /bin/sh git` (http block)
> - `ffa29dc95e`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/wsPSbe /usr/bin/composer install --no-interaction` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KP66Ru /usr/bin/composer install` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
> - `07d290f0c4`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uopJ4j /usr/bin/composer install --no-interaction 76d9ef32^{commit} --quiet --verify nfig/composer/ve--git-dir /usr/lib/git-core/git fetc --prune --multiple /home/REDACTED/.local/bin/git exec &#39;git&#39; &#39;brangit git /home/REDACTED/.lo--git-dir git` (http block)
> - `5ee4e978b7`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/wsPSbe /usr/bin/composer install --no-interaction` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
> - `8c360e2732`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/wsPSbe /usr/bin/composer install --no-interaction` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
> - `dca41cd15c`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q9Ob4s /usr/bin/composer install --no-interaction rgo/bin/git --git-dir git git git tag en git } --quiet --verify rgo/bin/git git` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uopJ4j /usr/bin/composer install --no-interaction 76d9ef32^{commit} --quiet --verify nfig/composer/ve--git-dir /usr/lib/git-core/git fetc --prune --multiple /home/REDACTED/.local/bin/git exec &#39;git&#39; &#39;brangit git /home/REDACTED/.lo--git-dir git` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/zgDJHO /usr/bin/composer install --no-interaction --prefer-dist en git 2bc56493^{commitgithub.accesstoken sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-dir&#39; git tnet/tools/git 2636b6de493846e1git git /bin/sh git` (http block)
> - `54750ef60c`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uopJ4j /usr/bin/composer install --no-interaction 76d9ef32^{commit} --quiet --verify nfig/composer/ve--git-dir /usr/lib/git-core/git fetc --prune --multiple /home/REDACTED/.local/bin/git exec &#39;git&#39; &#39;brangit git /home/REDACTED/.lo--git-dir git` (http block)
> - `c581d4941e`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/wsPSbe /usr/bin/composer install --no-interaction` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
> - `4f7fd7836c`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/wsPSbe /usr/bin/composer install --no-interaction` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
> - `e41a24703d`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/4RMiGf /usr/bin/composer install --no-interaction t en origin ndor/bin/git git rev- --git-dir git c7f180cab83036ed26714bb0^{commit} ig&#39; &#39;github.accegit git } sh` (http block)
> - `707984727b`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/wsPSbe /usr/bin/composer install --no-interaction` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
> - `c71ecc56df`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q9Ob4s /usr/bin/composer install --no-interaction rgo/bin/git --git-dir git git git tag en git } --quiet --verify rgo/bin/git git` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uopJ4j /usr/bin/composer install --no-interaction 76d9ef32^{commit} --quiet --verify nfig/composer/ve--git-dir /usr/lib/git-core/git fetc --prune --multiple /home/REDACTED/.local/bin/git exec &#39;git&#39; &#39;brangit git /home/REDACTED/.lo--git-dir git` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/zgDJHO /usr/bin/composer install --no-interaction --prefer-dist en git 2bc56493^{commitgithub.accesstoken sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-dir&#39; git tnet/tools/git 2636b6de493846e1git git /bin/sh git` (http block)
> - `bbd9eacc08`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/4RMiGf /usr/bin/composer install --no-interaction t en origin ndor/bin/git git rev- --git-dir git c7f180cab83036ed26714bb0^{commit} ig&#39; &#39;github.accegit git } sh` (http block)
> - `dbefd12671`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q9Ob4s /usr/bin/composer install --no-interaction rgo/bin/git --git-dir git git git tag en git } --quiet --verify rgo/bin/git git` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uopJ4j /usr/bin/composer install --no-interaction 76d9ef32^{commit} --quiet --verify nfig/composer/ve--git-dir /usr/lib/git-core/git fetc --prune --multiple /home/REDACTED/.local/bin/git exec &#39;git&#39; &#39;brangit git /home/REDACTED/.lo--git-dir git` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/zgDJHO /usr/bin/composer install --no-interaction --prefer-dist en git 2bc56493^{commitgithub.accesstoken sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-dir&#39; git tnet/tools/git 2636b6de493846e1git git /bin/sh git` (http block)
> - `f16e1d5863`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q9Ob4s /usr/bin/composer install --no-interaction rgo/bin/git --git-dir git git git tag en git } --quiet --verify rgo/bin/git git` (http block)
> - `115999dc7f`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q9Ob4s /usr/bin/composer install --no-interaction rgo/bin/git --git-dir git git git tag en git } --quiet --verify rgo/bin/git git` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/zgDJHO /usr/bin/composer install --no-interaction --prefer-dist en git 2bc56493^{commitgithub.accesstoken sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-dir&#39; git tnet/tools/git 2636b6de493846e1git git /bin/sh git` (http block)
> - `1d01c49d4e`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q9Ob4s /usr/bin/composer install --no-interaction rgo/bin/git --git-dir git git git tag en git } --quiet --verify rgo/bin/git git` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uopJ4j /usr/bin/composer install --no-interaction 76d9ef32^{commit} --quiet --verify nfig/composer/ve--git-dir /usr/lib/git-core/git fetc --prune --multiple /home/REDACTED/.local/bin/git exec &#39;git&#39; &#39;brangit git /home/REDACTED/.lo--git-dir git` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/zgDJHO /usr/bin/composer install --no-interaction --prefer-dist en git 2bc56493^{commitgithub.accesstoken sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-dir&#39; git tnet/tools/git 2636b6de493846e1git git /bin/sh git` (http block)
> - `a0eeab580c`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/wsPSbe /usr/bin/composer install --no-interaction` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KP66Ru /usr/bin/composer install` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
> - `5cee1d3dfc`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/4RMiGf /usr/bin/composer install --no-interaction t en origin ndor/bin/git git rev- --git-dir git c7f180cab83036ed26714bb0^{commit} ig&#39; &#39;github.accegit git } sh` (http block)
> - `92a98ada2b`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q9Ob4s /usr/bin/composer install --no-interaction rgo/bin/git --git-dir git git git tag en git } --quiet --verify rgo/bin/git git` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uopJ4j /usr/bin/composer install --no-interaction 76d9ef32^{commit} --quiet --verify nfig/composer/ve--git-dir /usr/lib/git-core/git fetc --prune --multiple /home/REDACTED/.local/bin/git exec &#39;git&#39; &#39;brangit git /home/REDACTED/.lo--git-dir git` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/zgDJHO /usr/bin/composer install --no-interaction --prefer-dist en git 2bc56493^{commitgithub.accesstoken sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-dir&#39; git tnet/tools/git 2636b6de493846e1git git /bin/sh git` (http block)
> - `fb05a34cd1`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/wsPSbe /usr/bin/composer install --no-interaction` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KP66Ru /usr/bin/composer install` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
> - `a004701b11`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/wsPSbe /usr/bin/composer install --no-interaction` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KP66Ru /usr/bin/composer install` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
> - `e4c5a22bf4`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/wsPSbe /usr/bin/composer install --no-interaction` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KP66Ru /usr/bin/composer install` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
> - `1ed9e626a3`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/wsPSbe /usr/bin/composer install --no-interaction` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KP66Ru /usr/bin/composer install` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
> - `28cd424c5e`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q9Ob4s /usr/bin/composer install --no-interaction rgo/bin/git --git-dir git git git tag en git } --quiet --verify rgo/bin/git git` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uopJ4j /usr/bin/composer install --no-interaction 76d9ef32^{commit} --quiet --verify nfig/composer/ve--git-dir /usr/lib/git-core/git fetc --prune --multiple /home/REDACTED/.local/bin/git exec &#39;git&#39; &#39;brangit git /home/REDACTED/.lo--git-dir git` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/zgDJHO /usr/bin/composer install --no-interaction --prefer-dist en git 2bc56493^{commitgithub.accesstoken sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-dir&#39; git tnet/tools/git 2636b6de493846e1git git /bin/sh git` (http block)
> - `b8afa9a970`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/wsPSbe /usr/bin/composer install --no-interaction` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KP66Ru /usr/bin/composer install` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
> - `15c5dd40dc`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uopJ4j /usr/bin/composer install --no-interaction 76d9ef32^{commit} --quiet --verify nfig/composer/ve--git-dir /usr/lib/git-core/git fetc --prune --multiple /home/REDACTED/.local/bin/git exec &#39;git&#39; &#39;brangit git /home/REDACTED/.lo--git-dir git` (http block)
> - `249c25bbb3`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/wsPSbe /usr/bin/composer install --no-interaction` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
> - `183a9b2632`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uopJ4j /usr/bin/composer install --no-interaction 76d9ef32^{commit} --quiet --verify nfig/composer/ve--git-dir /usr/lib/git-core/git fetc --prune --multiple /home/REDACTED/.local/bin/git exec &#39;git&#39; &#39;brangit git /home/REDACTED/.lo--git-dir git` (http block)
> - `5cf245ed86`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/wsPSbe /usr/bin/composer install --no-interaction` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
> - `23caa57776`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/wsPSbe /usr/bin/composer install --no-interaction` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
> - `54391c61e4`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uopJ4j /usr/bin/composer install --no-interaction 76d9ef32^{commit} --quiet --verify nfig/composer/ve--git-dir /usr/lib/git-core/git fetc --prune --multiple /home/REDACTED/.local/bin/git exec &#39;git&#39; &#39;brangit git /home/REDACTED/.lo--git-dir git` (http block)
> - `2c95e1e86c`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uopJ4j /usr/bin/composer install --no-interaction 76d9ef32^{commit} --quiet --verify nfig/composer/ve--git-dir /usr/lib/git-core/git fetc --prune --multiple /home/REDACTED/.local/bin/git exec &#39;git&#39; &#39;brangit git /home/REDACTED/.lo--git-dir git` (http block)
> - `ee0326914d`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/wsPSbe /usr/bin/composer install --no-interaction` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
> - `66dc7be5b8`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/wsPSbe /usr/bin/composer install --no-interaction` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
> - `ee41d384ab`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uopJ4j /usr/bin/composer install --no-interaction 76d9ef32^{commit} --quiet --verify nfig/composer/ve--git-dir /usr/lib/git-core/git fetc --prune --multiple /home/REDACTED/.local/bin/git exec &#39;git&#39; &#39;brangit git /home/REDACTED/.lo--git-dir git` (http block)
> - `a42039c742`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/wsPSbe /usr/bin/composer install --no-interaction` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
> - `b4ccd85712`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uopJ4j /usr/bin/composer install --no-interaction 76d9ef32^{commit} --quiet --verify nfig/composer/ve--git-dir /usr/lib/git-core/git fetc --prune --multiple /home/REDACTED/.local/bin/git exec &#39;git&#39; &#39;brangit git /home/REDACTED/.lo--git-dir git` (http block)
> - `05faa86b4c`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/wsPSbe /usr/bin/composer install --no-interaction` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
> - `a5c7503869`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uopJ4j /usr/bin/composer install --no-interaction 76d9ef32^{commit} --quiet --verify nfig/composer/ve--git-dir /usr/lib/git-core/git fetc --prune --multiple /home/REDACTED/.local/bin/git exec &#39;git&#39; &#39;brangit git /home/REDACTED/.lo--git-dir git` (http block)
> - `70a298763b`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uopJ4j /usr/bin/composer install --no-interaction 76d9ef32^{commit} --quiet --verify nfig/composer/ve--git-dir /usr/lib/git-core/git fetc --prune --multiple /home/REDACTED/.local/bin/git exec &#39;git&#39; &#39;brangit git /home/REDACTED/.lo--git-dir git` (http block)
> - `c939676885`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/wsPSbe /usr/bin/composer install --no-interaction` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
> - `3be331570a`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uopJ4j /usr/bin/composer install --no-interaction 76d9ef32^{commit} --quiet --verify nfig/composer/ve--git-dir /usr/lib/git-core/git fetc --prune --multiple /home/REDACTED/.local/bin/git exec &#39;git&#39; &#39;brangit git /home/REDACTED/.lo--git-dir git` (http block)
> - `88b1eb038f`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/wsPSbe /usr/bin/composer install --no-interaction` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
> - `8426f4eebc`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/wsPSbe /usr/bin/composer install --no-interaction` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
> - `d36ad0d782`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uopJ4j /usr/bin/composer install --no-interaction 76d9ef32^{commit} --quiet --verify nfig/composer/ve--git-dir /usr/lib/git-core/git fetc --prune --multiple /home/REDACTED/.local/bin/git exec &#39;git&#39; &#39;brangit git /home/REDACTED/.lo--git-dir git` (http block)
> - `1748f199f5`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/wsPSbe /usr/bin/composer install --no-interaction` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
> - `f5b498e631`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uopJ4j /usr/bin/composer install --no-interaction 76d9ef32^{commit} --quiet --verify nfig/composer/ve--git-dir /usr/lib/git-core/git fetc --prune --multiple /home/REDACTED/.local/bin/git exec &#39;git&#39; &#39;brangit git /home/REDACTED/.lo--git-dir git` (http block)
> - `6e1a43b411`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uopJ4j /usr/bin/composer install --no-interaction 76d9ef32^{commit} --quiet --verify nfig/composer/ve--git-dir /usr/lib/git-core/git fetc --prune --multiple /home/REDACTED/.local/bin/git exec &#39;git&#39; &#39;brangit git /home/REDACTED/.lo--git-dir git` (http block)
> - `89dc41f115`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/wsPSbe /usr/bin/composer install --no-interaction` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
> - `2c1ed04922`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/wsPSbe /usr/bin/composer install --no-interaction` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
> - `118cfaaa8b`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uopJ4j /usr/bin/composer install --no-interaction 76d9ef32^{commit} --quiet --verify nfig/composer/ve--git-dir /usr/lib/git-core/git fetc --prune --multiple /home/REDACTED/.local/bin/git exec &#39;git&#39; &#39;brangit git /home/REDACTED/.lo--git-dir git` (http block)
> - `18a3d4f3af`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/wsPSbe /usr/bin/composer install --no-interaction` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
> - `c1ca381473`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uopJ4j /usr/bin/composer install --no-interaction 76d9ef32^{commit} --quiet --verify nfig/composer/ve--git-dir /usr/lib/git-core/git fetc --prune --multiple /home/REDACTED/.local/bin/git exec &#39;git&#39; &#39;brangit git /home/REDACTED/.lo--git-dir git` (http block)
> - `cdf46882fb`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/wsPSbe /usr/bin/composer install --no-interaction` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
> - `3e0404dc6b`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uopJ4j /usr/bin/composer install --no-interaction 76d9ef32^{commit} --quiet --verify nfig/composer/ve--git-dir /usr/lib/git-core/git fetc --prune --multiple /home/REDACTED/.local/bin/git exec &#39;git&#39; &#39;brangit git /home/REDACTED/.lo--git-dir git` (http block)
> - `51c29005b7`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/wsPSbe /usr/bin/composer install --no-interaction` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
> - `297d0ed22e`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/wsPSbe /usr/bin/composer install --no-interaction` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
> - `3b415def83`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uopJ4j /usr/bin/composer install --no-interaction 76d9ef32^{commit} --quiet --verify nfig/composer/ve--git-dir /usr/lib/git-core/git fetc --prune --multiple /home/REDACTED/.local/bin/git exec &#39;git&#39; &#39;brangit git /home/REDACTED/.lo--git-dir git` (http block)
> - `0df37f7891`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/wsPSbe /usr/bin/composer install --no-interaction` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
> - `fdfc727f0f`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uopJ4j /usr/bin/composer install --no-interaction 76d9ef32^{commit} --quiet --verify nfig/composer/ve--git-dir /usr/lib/git-core/git fetc --prune --multiple /home/REDACTED/.local/bin/git exec &#39;git&#39; &#39;brangit git /home/REDACTED/.lo--git-dir git` (http block)
> - `5d8d13f2fc`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/wsPSbe /usr/bin/composer install --no-interaction` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
> - `f6458abbf3`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uopJ4j /usr/bin/composer install --no-interaction 76d9ef32^{commit} --quiet --verify nfig/composer/ve--git-dir /usr/lib/git-core/git fetc --prune --multiple /home/REDACTED/.local/bin/git exec &#39;git&#39; &#39;brangit git /home/REDACTED/.lo--git-dir git` (http block)
> - `6abfe424c6`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/wsPSbe /usr/bin/composer install --no-interaction` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
> - `f77d2d4e78`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uopJ4j /usr/bin/composer install --no-interaction 76d9ef32^{commit} --quiet --verify nfig/composer/ve--git-dir /usr/lib/git-core/git fetc --prune --multiple /home/REDACTED/.local/bin/git exec &#39;git&#39; &#39;brangit git /home/REDACTED/.lo--git-dir git` (http block)
> - `0e6075acec`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/wsPSbe /usr/bin/composer install --no-interaction` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
> - `c687e3387b`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uopJ4j /usr/bin/composer install --no-interaction 76d9ef32^{commit} --quiet --verify nfig/composer/ve--git-dir /usr/lib/git-core/git fetc --prune --multiple /home/REDACTED/.local/bin/git exec &#39;git&#39; &#39;brangit git /home/REDACTED/.lo--git-dir git` (http block)
> - `d8334211a1`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/wsPSbe /usr/bin/composer install --no-interaction` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KP66Ru /usr/bin/composer install` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
> - `4effec562e`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/4RMiGf /usr/bin/composer install --no-interaction t en origin ndor/bin/git git rev- --git-dir git c7f180cab83036ed26714bb0^{commit} ig&#39; &#39;github.accegit git } sh` (http block)
> - `9169f24776`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/4RMiGf /usr/bin/composer install --no-interaction t en origin ndor/bin/git git rev- --git-dir git c7f180cab83036ed26714bb0^{commit} ig&#39; &#39;github.accegit git } sh` (http block)
> - `4275b53b8a`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q9Ob4s /usr/bin/composer install --no-interaction rgo/bin/git --git-dir git git git tag en git } --quiet --verify rgo/bin/git git` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/zgDJHO /usr/bin/composer install --no-interaction --prefer-dist en git 2bc56493^{commitgithub.accesstoken sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-dir&#39; git tnet/tools/git 2636b6de493846e1git git /bin/sh git` (http block)
> - `41e38717ac`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q9Ob4s /usr/bin/composer install --no-interaction rgo/bin/git --git-dir git git git tag en git } --quiet --verify rgo/bin/git git` (http block)
> - `76a02cddca`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q9Ob4s /usr/bin/composer install --no-interaction rgo/bin/git --git-dir git git git tag en git } --quiet --verify rgo/bin/git git` (http block)
> - `63afe740e9`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q9Ob4s /usr/bin/composer install --no-interaction rgo/bin/git --git-dir git git git tag en git } --quiet --verify rgo/bin/git git` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uopJ4j /usr/bin/composer install --no-interaction 76d9ef32^{commit} --quiet --verify nfig/composer/ve--git-dir /usr/lib/git-core/git fetc --prune --multiple /home/REDACTED/.local/bin/git exec &#39;git&#39; &#39;brangit git /home/REDACTED/.lo--git-dir git` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/zgDJHO /usr/bin/composer install --no-interaction --prefer-dist en git 2bc56493^{commitgithub.accesstoken sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-dir&#39; git tnet/tools/git 2636b6de493846e1git git /bin/sh git` (http block)
> - `bbd66f9d55`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/wsPSbe /usr/bin/composer install --no-interaction` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
> - `71fd6a82fc`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/4RMiGf /usr/bin/composer install --no-interaction t en origin ndor/bin/git git rev- --git-dir git c7f180cab83036ed26714bb0^{commit} ig&#39; &#39;github.accegit git } sh` (http block)
> - `59eb412e93`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q9Ob4s /usr/bin/composer install --no-interaction rgo/bin/git --git-dir git git git tag en git } --quiet --verify rgo/bin/git git` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uopJ4j /usr/bin/composer install --no-interaction 76d9ef32^{commit} --quiet --verify nfig/composer/ve--git-dir /usr/lib/git-core/git fetc --prune --multiple /home/REDACTED/.local/bin/git exec &#39;git&#39; &#39;brangit git /home/REDACTED/.lo--git-dir git` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/zgDJHO /usr/bin/composer install --no-interaction --prefer-dist en git 2bc56493^{commitgithub.accesstoken sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-dir&#39; git tnet/tools/git 2636b6de493846e1git git /bin/sh git` (http block)
> - `ccba706060`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/4RMiGf /usr/bin/composer install --no-interaction t en origin ndor/bin/git git rev- --git-dir git c7f180cab83036ed26714bb0^{commit} ig&#39; &#39;github.accegit git } sh` (http block)
> - `dc2c0eba1a`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q9Ob4s /usr/bin/composer install --no-interaction rgo/bin/git --git-dir git git git tag en git } --quiet --verify rgo/bin/git git` (http block)
> - `d551b38811`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q9Ob4s /usr/bin/composer install --no-interaction rgo/bin/git --git-dir git git git tag en git } --quiet --verify rgo/bin/git git` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/zgDJHO /usr/bin/composer install --no-interaction --prefer-dist en git 2bc56493^{commitgithub.accesstoken sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-dir&#39; git tnet/tools/git 2636b6de493846e1git git /bin/sh git` (http block)
> - `ad4daa7c38`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q9Ob4s /usr/bin/composer install --no-interaction rgo/bin/git --git-dir git git git tag en git } --quiet --verify rgo/bin/git git` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/zgDJHO /usr/bin/composer install --no-interaction --prefer-dist en git 2bc56493^{commitgithub.accesstoken sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-dir&#39; git tnet/tools/git 2636b6de493846e1git git /bin/sh git` (http block)
> - `75d7043853`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uopJ4j /usr/bin/composer install --no-interaction 76d9ef32^{commit} --quiet --verify nfig/composer/ve--git-dir /usr/lib/git-core/git fetc --prune --multiple /home/REDACTED/.local/bin/git exec &#39;git&#39; &#39;brangit git /home/REDACTED/.lo--git-dir git` (http block)
> - `a108a53ce0`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/4RMiGf /usr/bin/composer install --no-interaction t en origin ndor/bin/git git rev- --git-dir git c7f180cab83036ed26714bb0^{commit} ig&#39; &#39;github.accegit git } sh` (http block)
> - `84bb634857`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/4RMiGf /usr/bin/composer install --no-interaction t en origin ndor/bin/git git rev- --git-dir git c7f180cab83036ed26714bb0^{commit} ig&#39; &#39;github.accegit git } sh` (http block)
> - `a3cc8b044a`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/wsPSbe /usr/bin/composer install --no-interaction` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
> - `380872130d`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/wsPSbe /usr/bin/composer install --no-interaction` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
> - `3833d7255c`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/wsPSbe /usr/bin/composer install --no-interaction` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
> - `6d857f4d76`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/wsPSbe /usr/bin/composer install --no-interaction` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
> - `17f6f9a6b1`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/4RMiGf /usr/bin/composer install --no-interaction t en origin ndor/bin/git git rev- --git-dir git c7f180cab83036ed26714bb0^{commit} ig&#39; &#39;github.accegit git } sh` (http block)
> - `4acd8b3205`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/wsPSbe /usr/bin/composer install --no-interaction` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
> - `d8ced4d875`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uopJ4j /usr/bin/composer install --no-interaction 76d9ef32^{commit} --quiet --verify nfig/composer/ve--git-dir /usr/lib/git-core/git fetc --prune --multiple /home/REDACTED/.local/bin/git exec &#39;git&#39; &#39;brangit git /home/REDACTED/.lo--git-dir git` (http block)
> - `21533be36c`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/wsPSbe /usr/bin/composer install --no-interaction` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
> - `fa49bf1ca8`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/wsPSbe /usr/bin/composer install --no-interaction` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
> - `1c9d326bd6`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/wsPSbe /usr/bin/composer install --no-interaction` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
> - `480cd1237c`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/wsPSbe /usr/bin/composer install --no-interaction` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
> - `09dd242537`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/4RMiGf /usr/bin/composer install --no-interaction t en origin ndor/bin/git git rev- --git-dir git c7f180cab83036ed26714bb0^{commit} ig&#39; &#39;github.accegit git } sh` (http block)
> - `45112560a3`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q9Ob4s /usr/bin/composer install --no-interaction rgo/bin/git --git-dir git git git tag en git } --quiet --verify rgo/bin/git git` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uopJ4j /usr/bin/composer install --no-interaction 76d9ef32^{commit} --quiet --verify nfig/composer/ve--git-dir /usr/lib/git-core/git fetc --prune --multiple /home/REDACTED/.local/bin/git exec &#39;git&#39; &#39;brangit git /home/REDACTED/.lo--git-dir git` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/zgDJHO /usr/bin/composer install --no-interaction --prefer-dist en git 2bc56493^{commitgithub.accesstoken sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-dir&#39; git tnet/tools/git 2636b6de493846e1git git /bin/sh git` (http block)
> - `1c4b10461b`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/wsPSbe /usr/bin/composer install --no-interaction` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
> - `f83c725e72`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/wsPSbe /usr/bin/composer install --no-interaction` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
> - `7719ce8aba`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/wsPSbe /usr/bin/composer install --no-interaction` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
> - `03a60f169c`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q9Ob4s /usr/bin/composer install --no-interaction rgo/bin/git --git-dir git git git tag en git } --quiet --verify rgo/bin/git git` (http block)
> - `24dd4de28d`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q9Ob4s /usr/bin/composer install --no-interaction rgo/bin/git --git-dir git git git tag en git } --quiet --verify rgo/bin/git git` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/zgDJHO /usr/bin/composer install --no-interaction --prefer-dist en git 2bc56493^{commitgithub.accesstoken sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-dir&#39; git tnet/tools/git 2636b6de493846e1git git /bin/sh git` (http block)
> - `b7489ce515`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/wsPSbe /usr/bin/composer install --no-interaction` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
> - `ce6a2f100c`
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/KhDL7z /usr/bin/composer install --no-interaction } -info.git/` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/buZ7aj /usr/bin/composer install --ignore-platform-req=ext-* --no-interaction REDACTED /usr/lib/git-correv-parse } e/git -c` (http block)
>   - Triggering command: `/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/4RMiGf /usr/bin/composer install --no-interaction t en origin ndor/bin/git git rev- --git-dir git c7f180cab83036ed26714bb0^{commit} ig&#39; &#39;github.accegit git } sh` (http block)
> - `phar.phpunit.de`
>   - Triggering command: `/usr/bin/wget wget -q REDACTED -O vendor/bin/phpunit -v git ndor/bin/git --quiet --verify rgo/bin/git git rev- te&#39; &#39;update&#39; &#39;--prune&#39; &#39;origin&#39; git cal/bin/git git git ndor/bin/git git` (dns block)
>   - Triggering command: `/usr/bin/curl curl -sL REDACTED -o vendor/bin/phpunit ch&#39; origin git REDACTED git ndor/bin/git git rev- --git-dir git /home/REDACTED/.config/composer/vendor/bin/git te&#39; &#39;-v&#39; git cal/bin/git git` (dns block)
>
> If you need me to access, download, or install something from one of these locations, you can either:
>
> - Configure [Actions setup steps](https://gh.io/copilot/actions-setup-steps) to set up my environment, which run before the firewall is enabled
> - Add the appropriate URLs or hosts to the custom allowlist in this repository's [Copilot coding agent settings](https://github.com/symfony/ai/settings/copilot/coding_agent) (admins only)
>
> </details>

<!-- START COPILOT ORIGINAL PROMPT -->

<details>

<summary>Original prompt</summary>

>
> ----
>
> *This section details on the original issue you should resolve*
>
> <issue_title>[Store][InMemory] Implement remove() method</issue_title>
> <issue_description>Part of symfony/ai#1468
>
> Implement the `remove()` method for the InMemory store.
>
> **File:** `src/store/src/InMemory/Store.php`
>
> **Method signature:**
> ```php
> public function remove(string|array $ids, array $options = []): void;
> ```
>
> See Pinecone implementation in `src/store/src/Bridge/Pinecone/Store.php` for reference.</issue_description>
>
> <agent_instructions>Please make sure to extend existing tests, if there is one.</agent_instructions>
>
> ## Comments on the Issue (you are `@copilot` in this section)
>
> <comments>
> </comments>
>

</details>

<!-- START COPILOT CODING AGENT SUFFIX -->

- Fixes symfony/ai#1469

<!-- START COPILOT CODING AGENT TIPS -->
---

💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more [Copilot coding agent tips](https://gh.io/copilot-coding-agent-tips) in the docs.

Commits
-------

9074cdfb Implement remove() method for InMemory Store
2026-01-31 17:36:10 +01:00
Christopher Hertel
32626ebb6c Split Indexer into DocumentIndexer and SourceIndexer 2026-01-30 15:55:37 +01:00
Christopher Hertel
9dbdef915c Fix to proper delay handling, more than once but also not after last element 2026-01-29 15:50:26 +01:00
Grégoire Pineau
96e15ef407 [Store] Allow iterable of source in Indexer::index() + does't break lazyness 2026-01-29 14:26:45 +01:00
Christopher Hertel
4caff3ce8f Shift state out of Indexer service 2026-01-29 12:39:38 +01:00
Christopher Hertel
3522d1bdd3 Implement remove() method for InMemory Store 2026-01-28 23:06:36 +01:00
Christopher Hertel
61fbab7e54 feature #1389 [Store] Add support for "remove" operation (MolloKhan)
This PR was squashed before being merged into the main branch.

Discussion
----------

[Store] Add support for "remove" operation

| Q             | A
| ------------- | ---
| Bug fix?      | no
| New feature?  | yes
| Docs?         | yes
| Issues        | Fix #1373
| License       | MIT

Added `remove()` method to the `StoreInterface` and added real implementation to the Pinecone bridge

Commits
-------

3f380e50 [Store] Add support for "remove" operation
2026-01-28 21:47:40 +01:00
Diego Aguiar
41ed8bf792 [Store] Add support for "remove" operation 2026-01-28 21:47:29 +01:00
Christopher Hertel
94ebb7240d Revert of bumping the branch-alias right away 2026-01-27 23:21:43 +01:00
Christopher Hertel
01507c60f2 Expose chunk size and delay via construct to actually override via container v0.3.3 2026-01-27 14:55:43 +01:00
Christopher Hertel
de92ee75fa Bump versions and aliases for v0.3.0 release v0.3.0 2026-01-23 22:29:55 +01:00
Christopher Hertel
5c622870b4 CS follows Symfony rules update 2026-01-23 21:56:05 +01:00
Diego Aguiar
0a00012732 [Store] Allow id to be int|string|Uuid for VectorDocument and TextDocument 2026-01-18 00:29:17 +01:00
Christopher Hertel
6aa9f3febc minor #1360 Prepare for release v0.2 (chr-hertel)
This PR was merged into the main branch.

Discussion
----------

 Prepare for release v0.2

| Q             | A
| ------------- | ---
| Bug fix?      | no
| New feature?  | no <!-- please update src/**/CHANGELOG.md files -->
| Docs?         | no <!-- required for new features -->
| Issues        | Fix #... <!-- prefix each issue number with "Fix #", no need to create an issue if none exist, explain below instead -->
| License       | MIT

Commits
-------

e1ca6baf Prepare for release v0.2
v0.2.0
2026-01-09 17:20:45 +01:00
Guillaume Loulier
c2fc46ecfc conf(tests): executionOrder moved to random 2026-01-08 11:38:03 +01:00
Guillaume Loulier
ba1b505b29 fix(store): reword force option description 2026-01-08 09:42:03 +01:00
Christopher Hertel
51cf6f20bf Prepare for release v0.2 2026-01-08 09:09:35 +01:00
Oskar Stark
d933217c30 [AI Bundle][Agent][Store] Require symfony/ai-platform ^0.2 2026-01-06 22:40:14 +01:00
Guillaume Loulier
70e237caf7 ref 2026-01-06 21:17:44 +01:00
Christopher Hertel
48748f341c Bump branch alias to 0.2.x-dev 2026-01-06 15:41:54 +01:00