diff --git a/.github/workflows/recipe.yaml b/.github/workflows/recipe.yaml index 44e3d235..1b7845fe 100644 --- a/.github/workflows/recipe.yaml +++ b/.github/workflows/recipe.yaml @@ -14,16 +14,9 @@ jobs: strategy: fail-fast: false matrix: - php: ['8.0', '8.1', '8.2'] - sylius: ["~1.11.0", "~1.12.0", "~1.13.0"] - exclude: - - php: '8.2' - sylius: '~1.11.0' - - php: '8.0' - sylius: '~1.12.0' - - php: '8.0' - sylius: '~1.13.0' - + php: ['8.1', '8.2', '8.3'] + sylius: ["~1.12.0", "~1.13.0", "1.14.0"] + steps: - name: Setup PHP uses: shivammathur/setup-php@v2 diff --git a/.github/workflows/security.yaml b/.github/workflows/security.yaml index c100cfa1..df6525a3 100644 --- a/.github/workflows/security.yaml +++ b/.github/workflows/security.yaml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - php: ['8.1', '8.2'] + php: ['8.1', '8.2', '8.3'] steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 877ce6a6..35e10148 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: false matrix: - php: ['8.1', '8.2'] + php: ['8.1', '8.2', '8.3'] env: SYMFONY_ARGS: --no-tls diff --git a/Makefile b/Makefile index ecb1afd7..2768762c 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ .DEFAULT_GOAL := help SHELL=/bin/bash APP_DIR=tests/Application -SYLIUS_VERSION=1.13.0 +SYLIUS_VERSION=1.14.0 SYMFONY=cd ${APP_DIR} && symfony COMPOSER=symfony composer CONSOLE=${SYMFONY} console diff --git a/README.md b/README.md index 61bff1e6..422969a9 100644 --- a/README.md +++ b/README.md @@ -14,10 +14,11 @@ This plugin gives you the ability to have Plugins oriented settings in your favo ## Compatibility | Sylius Version | PHP Version | -|---|---| -| 1.11 | 8.0 - 8.1 | -| 1.12 | 8.1 - 8.2 | -| 1.13 | 8.1 - 8.2 | +|----------------|-------------| +| 1.11 | 8.0 - 8.1 | +| 1.12 | 8.1 - 8.2 | +| 1.13 | 8.1 - 8.2 | +| 1.14 | 8.1 - 8.2 | ## Installation diff --git a/composer.json b/composer.json index 74358cbb..da616ede 100644 --- a/composer.json +++ b/composer.json @@ -6,7 +6,7 @@ "license": "MIT", "require": { "php": "^8.0", - "sylius/sylius": ">=1.11 <1.14" + "sylius/sylius": ">=1.12 <2.0" }, "require-dev": { "friendsofphp/php-cs-fixer": "^3.16",