diff --git a/.github/workflows/codeception.yaml b/.github/workflows/codeception.yaml index d10980c..f33eff0 100644 --- a/.github/workflows/codeception.yaml +++ b/.github/workflows/codeception.yaml @@ -36,7 +36,7 @@ jobs: include: - { php-version: 8.1, database: "mariadb:10.3", dependencies: lowest, experimental: false } - { php-version: 8.2, database: "mariadb:10.11", dependencies: highest, experimental: false } - - { php-version: 8.2, database: "mariadb:10.11", pimcore_version: "11.x-dev", dependencies: highest, experimental: true } + - { php-version: 8.3, database: "mariadb:10.11", pimcore_version: "11.x-dev", dependencies: highest, experimental: true } services: mariadb: image: "${{ matrix.database }}" @@ -81,4 +81,4 @@ jobs: dependency-versions: "${{ matrix.dependencies }}" - name: "Run Codeception" - run: "vendor/bin/codecept run -c . -vvv --xml" \ No newline at end of file + run: "vendor/bin/codecept run -c . -vvv --xml" diff --git a/.github/workflows/static-analysis.yaml b/.github/workflows/static-analysis.yaml index 5847ccc..81b2459 100644 --- a/.github/workflows/static-analysis.yaml +++ b/.github/workflows/static-analysis.yaml @@ -28,7 +28,7 @@ jobs: include: - { php-version: "8.1", dependencies: "lowest", pimcore_version: "", phpstan_args: "", experimental: false } - { php-version: "8.2", dependencies: "highest", phpstan_args: "", experimental: false } - - { php-version: "8.2", dependencies: "highest", pimcore_version: "11.x-dev", phpstan_args: "", experimental: true } + - { php-version: "8.3", dependencies: "highest", pimcore_version: "11.x-dev", phpstan_args: "", experimental: true } steps: - name: "Checkout code" uses: "actions/checkout@v2" @@ -57,4 +57,4 @@ jobs: dependency-versions: "${{ matrix.dependencies }}" - name: "Run a static analysis with phpstan/phpstan" - run: "vendor/bin/phpstan analyse ${{ matrix.phpstan_args }} -c phpstan.neon --memory-limit=-1" \ No newline at end of file + run: "vendor/bin/phpstan analyse ${{ matrix.phpstan_args }} -c phpstan.neon --memory-limit=-1" diff --git a/composer.json b/composer.json index 21cbc3b..e4063e6 100644 --- a/composer.json +++ b/composer.json @@ -11,7 +11,7 @@ } }, "require": { - "php": "~8.1.0 || ~8.2.0", + "php": "~8.1.0 || ~8.2.0 || ~8.3.0", "pimcore/pimcore": "^11.0", "geoip2/geoip2": "^2.9", "symfony/stopwatch": "^6.2",