diff --git a/.github/workflows/recipe.yaml b/.github/workflows/recipe.yaml index cda8fc5..4fa080b 100644 --- a/.github/workflows/recipe.yaml +++ b/.github/workflows/recipe.yaml @@ -18,12 +18,14 @@ jobs: fail-fast: false matrix: php: ['7.4' ,'8.0'] - sylius: ["~1.8.0", "~1.9.0", "~1.10.0"] + sylius: ["~1.8.0", "~1.9.0", "~1.10.0", "~1.11.0"] exclude: - php: 8.0 sylius: "~1.8.0" - php: 8.0 sylius: "~1.9.0" + - php: 7.4 + sylius: "~1.11.0" steps: - name: Setup PHP diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index b7a7bbd..f266e87 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: false matrix: - php: ['7.4', '8.0'] + php: ['8.0'] env: SYMFONY_ARGS: --no-tls diff --git a/Makefile b/Makefile index 9ba2340..b4d0e8e 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ .DEFAULT_GOAL := help SHELL=/bin/bash APP_DIR=tests/Application -SYLIUS_VERSION=1.10.0 +SYLIUS_VERSION=1.11.0 SYMFONY=cd ${APP_DIR} && symfony COMPOSER=symfony composer CONSOLE=${SYMFONY} console diff --git a/composer.json b/composer.json index fb355f6..1ea971c 100644 --- a/composer.json +++ b/composer.json @@ -6,7 +6,7 @@ "license": "MIT", "require": { "php": "~7.4|~8.0", - "sylius/sylius": ">=1.8 <1.11", + "sylius/sylius": ">=1.8 <1.12", "gedmo/doctrine-extensions": "^2.4.12 || ^3.0", "monsieurbiz/sylius-rich-editor-plugin": "^2.0" },