Skip to content

Commit

Permalink
chore: bump PHPQA (#166)
Browse files Browse the repository at this point in the history
  • Loading branch information
dkarlovi authored Feb 3, 2025
1 parent 375039e commit de4ad02
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion resources/PHP/common.mk
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ PHP_VERSION=8.3
endif

ifndef PHPQA_DOCKER_IMAGE
PHPQA_DOCKER_IMAGE=jakzal/phpqa:1.98.6-php${PHP_VERSION}-alpine
PHPQA_DOCKER_IMAGE=jakzal/phpqa:1.102.0-php${PHP_VERSION}-alpine
endif

ifndef PHPQA_DOCKER_COMMAND
Expand Down
4 changes: 2 additions & 2 deletions tests/functional/PHP/PhpTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ trait PhpTrait
*/
protected static function getEnvs(): iterable
{
yield ['PHP_VERSION' => '8.1'];
yield ['PHP_VERSION' => '8.2'];
yield ['PHP_VERSION' => '8.3'];
yield ['PHP_VERSION' => '8.4'];

yield ['PHPQA_DOCKER_IMAGE' => 'fake/image:123'];
yield ['PHP_VERSION' => '8.2', 'PHPQA_DOCKER_IMAGE' => 'fake/image:123'];
Expand Down Expand Up @@ -69,7 +69,7 @@ private static function paths(?array $env): array
{
// defaults which are also defined in the Makefile
$phpVersion = $env['PHP_VERSION'] ?? '8.3';
$phpqaDockerImage = $env['PHPQA_DOCKER_IMAGE'] ?? 'jakzal/phpqa:1.98.6-php%1$s-alpine';
$phpqaDockerImage = $env['PHPQA_DOCKER_IMAGE'] ?? 'jakzal/phpqa:1.102.0-php%1$s-alpine';
$dockerEnv = $env['DOCKER_ENV'] ?? ' ';

return [
Expand Down

0 comments on commit de4ad02

Please sign in to comment.