Skip to content

Commit

Permalink
ci fix
Browse files Browse the repository at this point in the history
  • Loading branch information
riki137 committed Oct 22, 2024
1 parent 6cece6d commit be45fed
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/composer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ jobs:
run: composer update --no-progress --no-interaction

- name: Composer outdated
run: composer outdated -D --strict
run: composer outdated -D --strict --ignore=phpunit/phpunit
2 changes: 1 addition & 1 deletion .github/workflows/extensions_finder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
run: composer update --no-progress --no-interaction

- name: Install PHP extensions finder as dev dependency
run: composer require efabrica/php-extensions-finder --dev
run: composer require -W efabrica/php-extensions-finder --dev

- name: PHP extensions finder
run: vendor/bin/php-extensions-finder check src tests
2 changes: 1 addition & 1 deletion src/DataType/TextDataType.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ class TextDataType extends AbstractDataType

public function populate(Column $column): string
{
return $this->faker->realTextBetween(1, mt_rand(10, $this->max));
return $this->faker->realTextBetween(10, $this->max);
}
}
2 changes: 1 addition & 1 deletion tests/Event/EventTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ abstract class EventTest extends TestCase
{
protected function createInput(): InputInterface
{
if (PHP_VERSION_ID < 80300) {
if (PHP_VERSION_ID < 80200) {
return require __DIR__ . '/NullInputSymfony6.php';
}
return require __DIR__ . '/NullInputSymfony7.php';
Expand Down

0 comments on commit be45fed

Please sign in to comment.