Skip to content

Commit 367729f

Browse files
committed
Update GitHub workflows
1 parent 8db4d9c commit 367729f

File tree

4 files changed

+12
-14
lines changed

4 files changed

+12
-14
lines changed

.github/workflows/backwards-compatibility-check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: "Setup PHP, with composer and extensions"
2121
uses: "shivammathur/setup-php@v2"
2222
with:
23-
php-version: "8.1"
23+
php-version: "8.2"
2424
coverage: "none"
2525

2626
- name: "Install tool"

.github/workflows/build.yaml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
strategy:
2525
matrix:
2626
php-version:
27-
- "8.1" # Always use the lowest version of PHP since a higher version could create actual syntax errors in lower versions
27+
- "8.2" # Always use the lowest version of PHP since a higher version could create actual syntax errors in lower versions
2828

2929
dependencies:
3030
- "highest"
@@ -72,16 +72,15 @@ jobs:
7272
strategy:
7373
matrix:
7474
php-version:
75-
- "8.1"
7675
- "8.2"
7776

7877
dependencies:
7978
- "lowest"
8079
- "highest"
8180

8281
symfony:
83-
- "~5.4.0"
8482
- "~6.4.0"
83+
- "~7.1.0"
8584

8685
steps:
8786
- name: "Checkout"
@@ -119,16 +118,15 @@ jobs:
119118
strategy:
120119
matrix:
121120
php-version:
122-
- "8.1"
123121
- "8.2"
124122

125123
dependencies:
126124
- "lowest"
127125
- "highest"
128126

129127
symfony:
130-
- "~5.4.0"
131128
- "~6.4.0"
129+
- "~7.1.0"
132130

133131
steps:
134132
- name: "Checkout"
@@ -163,16 +161,15 @@ jobs:
163161
strategy:
164162
matrix:
165163
php-version:
166-
- "8.1"
167164
- "8.2"
168165

169166
dependencies:
170167
- "lowest"
171168
- "highest"
172169

173170
symfony:
174-
- "~5.4.0"
175171
- "~6.4.0"
172+
- "~7.1.0"
176173

177174
steps:
178175
- name: "Checkout"
@@ -204,16 +201,15 @@ jobs:
204201
strategy:
205202
matrix:
206203
php-version:
207-
- "8.1"
208204
- "8.2"
209205

210206
dependencies:
211207
- "lowest"
212208
- "highest"
213209

214210
symfony:
215-
- "~5.4.0"
216211
- "~6.4.0"
212+
- "~7.1.0"
217213

218214
steps:
219215
- name: "Start MySQL"

composer.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919
"sylius/core": "^2.0",
2020
"sylius/core-bundle": "^2.0",
2121
"sylius/locale": "^2.0",
22+
"sylius/product": "^2.0",
23+
"sylius/product-bundle": "^2.0",
2224
"sylius/resource-bundle": "^1.12",
2325
"sylius/ui-bundle": "^2.0",
2426
"symfony/config": "^6.4 || ^7.1",
@@ -31,25 +33,26 @@
3133
"symfony/routing": "^6.4 || ^7.1",
3234
"symfony/string": "^6.4 || ^7.1",
3335
"symfony/translation-contracts": "^1.1 || ^2.4 || ^3.4",
36+
"symfony/ux-live-component": "^2.20",
3437
"symfony/validator": "^6.4 || ^7.1",
3538
"twig/twig": "^2.14 || ^3.8",
3639
"webmozart/assert": "^1.11"
3740
},
3841
"require-dev": {
39-
"api-platform/core": "^2.7.16",
42+
"api-platform/core": "^2.7 || ^3.4",
4043
"babdev/pagerfanta-bundle": "^4.4",
4144
"behat/behat": "^3.14",
4245
"doctrine/doctrine-bundle": "^2.11",
4346
"infection/infection": "^0.27.9",
44-
"jms/serializer-bundle": "^4.2",
47+
"jms/serializer-bundle": "^5.5",
4548
"lexik/jwt-authentication-bundle": "^3.1",
4649
"matthiasnoback/symfony-config-test": "^4.3 || ^5.1",
4750
"matthiasnoback/symfony-dependency-injection-test": "^4.3 || ^5.0",
4851
"phpspec/prophecy-phpunit": "^2.1",
4952
"phpunit/phpunit": "^9.6",
5053
"psalm/plugin-phpunit": "^0.18",
5154
"setono/code-quality-pack": "^2.7",
52-
"sylius/sylius": "~2.0",
55+
"sylius/sylius": "^2.0",
5356
"symfony/debug-bundle": "^6.4 || ^7.1",
5457
"symfony/dotenv": "^6.4 || ^7.1",
5558
"symfony/intl": "^6.4 || ^7.1",

tests/Application/config/bundles.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
Sylius\Bundle\ResourceBundle\SyliusResourceBundle::class => ['all' => true],
3232
Setono\SyliusTermsPlugin\SetonoSyliusTermsPlugin::class => ['all' => true],
3333
Sylius\Bundle\GridBundle\SyliusGridBundle::class => ['all' => true],
34-
winzou\Bundle\StateMachineBundle\winzouStateMachineBundle::class => ['all' => true],
3534
Sonata\BlockBundle\SonataBlockBundle::class => ['all' => true],
3635
Bazinga\Bundle\HateoasBundle\BazingaHateoasBundle::class => ['all' => true],
3736
JMS\SerializerBundle\JMSSerializerBundle::class => ['all' => true],

0 commit comments

Comments
 (0)