Skip to content

Commit

Permalink
Support PHP 8.4
Browse files Browse the repository at this point in the history
Signed-off-by: Nathanael Esayeas <nathanael.esayeas@protonmail.com>
  • Loading branch information
ghostwriter committed Sep 29, 2023
1 parent 25d4d89 commit 995e983
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/Listener/MatrixListener.php
Expand Up @@ -82,7 +82,7 @@ public function __invoke(MatrixEvent $generateMatrixEvent): void
continue;
}

$isExperimental = $phpVersion === PhpVersion::DEV;
$isExperimental = $phpVersion >= PhpVersion::DEV;

foreach (ComposerDependency::SUPPORTED as $dependency) {
$generateMatrixEvent->include(
Expand Down
1 change: 1 addition & 0 deletions src/Option/PhpVersion.php
Expand Up @@ -238,6 +238,7 @@ final class PhpVersion
self::PHP_81,
self::PHP_82,
self::PHP_83,
self::PHP_84,
];

/**
Expand Down

0 comments on commit 995e983

Please sign in to comment.