Skip to content

Commit

Permalink
Merge pull request #297 from dsbe-ak/master
Browse files Browse the repository at this point in the history
support of sylius 1.13
  • Loading branch information
oallain authored Apr 26, 2024
2 parents fb197dd + 11d3864 commit 9ada150
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ jobs:
matrix:
php: [8.0, 8.1]
symfony: [^5.4, ^6.0]
sylius: [~1.11.0, ~1.12.0]
node: [14.x]
sylius: [~1.11.0, ~1.12.0, ~1.13.0]
node: [18.x]
mysql: [5.7]

exclude:
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"license": "MIT",
"require": {
"php": "^8.0",
"sylius/sylius": "~1.11.0 || ~1.12.0",
"sylius/sylius": "~1.11.0 || ~1.12.0 || ~1.13.0",
"portphp/portphp": "^1.2",
"queue-interop/queue-interop": "^0.6.2 || ^0.7 || ^0.8",
"symfony/stopwatch": "^5.2 || ^6.0"
Expand Down
4 changes: 4 additions & 0 deletions tests/Application/config/bundles.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,8 @@
$bundles[Sylius\Calendar\SyliusCalendarBundle::class ] = ['all' => true];
}

if (Kernel::MINOR_VERSION >= 13) {
$bundles[Sylius\Abstraction\StateMachine\SyliusStateMachineAbstractionBundle::class ] = ['all' => true];
}

return $bundles;

0 comments on commit 9ada150

Please sign in to comment.