diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 59603a29..4353797f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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: diff --git a/composer.json b/composer.json index 0945841b..4ada99cc 100644 --- a/composer.json +++ b/composer.json @@ -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" diff --git a/tests/Application/config/bundles.php b/tests/Application/config/bundles.php index d6248e58..f7f6c32f 100644 --- a/tests/Application/config/bundles.php +++ b/tests/Application/config/bundles.php @@ -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;