diff --git a/.github/workflows/recipe.yaml b/.github/workflows/recipe.yaml index 5ad0b29..827b275 100644 --- a/.github/workflows/recipe.yaml +++ b/.github/workflows/recipe.yaml @@ -16,8 +16,8 @@ jobs: strategy: fail-fast: false matrix: - php: ['8.1', '8.2'] - sylius: ["~1.12.0", "~1.13.0"] + php: ['8.1', '8.2', '8.3'] + sylius: ["~1.12.0", "~1.13.0", "1.14.0"] steps: - name: Setup PHP diff --git a/.github/workflows/security.yaml b/.github/workflows/security.yaml index 92217ff..a9cee91 100644 --- a/.github/workflows/security.yaml +++ b/.github/workflows/security.yaml @@ -15,7 +15,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 726cfa3..dfcf019 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false matrix: - php: ['8.1', '8.2'] + php: ['8.1', '8.2', '8.3'] env: COMPOSER_ARGS: --prefer-dist diff --git a/.php-version.dist b/.php-version.dist index 2983cad..cf02201 100644 --- a/.php-version.dist +++ b/.php-version.dist @@ -1 +1 @@ -8.2 +8.3 diff --git a/Makefile b/Makefile index bede693..c1e6f90 100644 --- a/Makefile +++ b/Makefile @@ -1,13 +1,13 @@ .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 export COMPOSE_PROJECT_NAME=sylius_robots_txt_plugin PLUGIN_NAME=sylius-robots-txt-plugin -COMPOSE=docker-compose +COMPOSE=docker compose YARN=yarn DOCTRINE_MIGRATIONS_NAMESPACE=MonsieurBiz\SyliusRobotsTxtPlugin\Migrations diff --git a/README.md b/README.md index 35d3cfd..df5f3bc 100644 --- a/README.md +++ b/README.md @@ -11,10 +11,11 @@ Manage your robots.txt from your Sylius admin pannel ## Compatibility -| Sylius Version | PHP Version | -|---|---| -| 1.12 | 8.1 - 8.2 | -| 1.13 | 8.1 - 8.2 | +| Sylius Version | PHP Version | +|----------------|-----------------| +| 1.12 | 8.1 - 8.2 - 8.3 | +| 1.13 | 8.1 - 8.2 - 8.3 | +| 1.14 | 8.1 - 8.2 - 8.3 | ## Installation diff --git a/composer.json b/composer.json index 83efc58..9926357 100644 --- a/composer.json +++ b/composer.json @@ -6,8 +6,8 @@ "license": "MIT", "require": { "monsieurbiz/sylius-settings-plugin": "^1.2.0", - "php": "^8.0", - "sylius/sylius": ">=1.12 <1.14" + "php": "^8.1", + "sylius/sylius": ">=1.12 <2.0" }, "require-dev": { "friendsofphp/php-cs-fixer": "^3.16",