diff --git a/src/Form/RfcType.php b/src/Form/RfcType.php index 70b717b..20d3a7b 100644 --- a/src/Form/RfcType.php +++ b/src/Form/RfcType.php @@ -19,7 +19,7 @@ class RfcType extends AbstractType /** @param array $options */ public function buildForm(FormBuilderInterface $builder, array $options): void { - $versions = ['9.0', '8.4', '8.3', '8.2', '8.1', '8.0', '7.4', '7.3', '7.2', '7.1', '7.0', '5.6', '5.5', '5.4']; + $versions = ['9.0', '8.5', '8.4', '8.3', '8.2', '8.1', '8.0', '7.4', '7.3', '7.2', '7.1', '7.0', '5.6', '5.5', '5.4']; $builder ->add('targetPhpVersion', ChoiceType::class, ['choices' => array_combine($versions, $versions)])