Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [Unreleased]

### Fixed

- `dependency-graph` binary crashed due to undefined method call

## 3.9.0 - 2026-02-28

### Changed
Expand Down
9 changes: 6 additions & 3 deletions dependency-graph
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,16 @@ use Innmind\Framework\{
use Innmind\DependencyGraph\Kernel;
use Innmind\OperatingSystem\Config;

$config = Config::of()
->limitHttpConcurrencyTo(20);
$config = Config::new()->mapHttpTransport(
static fn($transport) => $transport->map(
static fn($config) => $config->limitConcurrencyTo(20),
),
);

new class($config) extends Cli {
#[\Override]
protected function configure(Application $app): Application
{
return $app->map(new Kernel);
}
};

1 change: 1 addition & 0 deletions psalm.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
>
<projectFiles>
<directory name="src" />
<file name="dependency-graph" />
<ignoreFiles>
<directory name="vendor" />
</ignoreFiles>
Expand Down
Loading