Skip to content

Commit fffcaa7

Browse files
committed
minor #132 add CI jobs for Symfony 6.3 (xabbuh)
This PR was merged into the 0.2-dev branch. Discussion ---------- add CI jobs for Symfony 6.3 Commits ------- db9b9ed add CI jobs for Symfony 6.3
2 parents d4ef371 + db9b9ed commit fffcaa7

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,15 @@ jobs:
9898
- php-version: '8.1'
9999
composer-options: '--prefer-stable'
100100
symfony-version: '5.4.*'
101+
- php-version: '8.1'
102+
composer-options: '--prefer-stable'
103+
symfony-version: '6.3.*'
101104
- php-version: '8.2'
102105
composer-options: '--prefer-stable'
103106
symfony-version: '5.4.*'
107+
- php-version: '8.2'
108+
composer-options: '--prefer-stable'
109+
symfony-version: '6.3.*'
104110

105111
steps:
106112
- name: 'Check out'

tests/Fixtures/Form/CancelSubscriptionType.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class CancelSubscriptionType extends AbstractType
2626
public function buildForm(FormBuilderInterface $builder, array $options): void
2727
{
2828
$builder
29-
->add('cancellation_date', DateType::class, $options['cancellation_date_options'])
29+
->add('cancellation_date', DateType::class, $options['cancellation_date_options'] + ['widget' => 'choice'])
3030
;
3131
}
3232

0 commit comments

Comments
 (0)