Skip to content

Commit

Permalink
WIP try to pass
Browse files Browse the repository at this point in the history
  • Loading branch information
dkarlovi committed Dec 6, 2024
1 parent 3d1b295 commit 8d22e2f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ It has been extracted as a separate project to make maintenance easier and enabl

## Available tools

| Name | Description | PHP 8.1 | PHP 8.2 | PHP 8.3 |
| :--- | :---------- | :------ | :------ | :------ |
| Name | Description | PHP 8.1 | PHP 8.2 | PHP 8.3 | PHP 8.4 |
| :--- | :---------- | :------ | :------ | :------ | :------ |
| behat | [Helps to test business expectations](http://behat.org/) | ✅ | ✅ | ✅ | ✅ |
| box | [Fast, zero config application bundler with PHARs](https://github.com/humbug/box) | ❌ | ✅ | ✅ | ✅ |
| box-3 | [Fast, zero config application bundler with PHARs](https://github.com/humbug/box) | ✅ | ❌ | ✅ | ✅ |
Expand Down
4 changes: 2 additions & 2 deletions bin/devkit.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ protected function execute(InputInterface $input, OutputInterface $output)
$readmePath = $input->getOption('readme');
$tools = $this->loadTools($jsonPath);

$toolsList = '| Name | Description | PHP 8.1 | PHP 8.2 | PHP 8.3 |' . PHP_EOL;
$toolsList .= '| :--- | :---------- | :------ | :------ | :------ |' . PHP_EOL;
$toolsList = '| Name | Description | PHP 8.1 | PHP 8.2 | PHP 8.3 | PHP 8.4 |' . PHP_EOL;
$toolsList .= '| :--- | :---------- | :------ | :------ | :------ | :------ |' . PHP_EOL;
$toolsList .= $tools->sort(function (Tool $left, Tool $right) {
return strcasecmp($left->name(), $right->name());
})->reduce('', function ($acc, Tool $tool) {
Expand Down

0 comments on commit 8d22e2f

Please sign in to comment.