diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e5cd76c..6dec844 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: matrix: # windows-latest, macOS-latest? operating-system: [ubuntu-latest] - php-versions: ['7.4', '8.0', '8.1'] + php-versions: ['7.4', '8.0', '8.1', '8.2'] name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }} steps: @@ -53,7 +53,7 @@ jobs: - name: Setup PHP (with Xdebug) uses: shivammathur/setup-php@v2 with: - php-version: '8.0' + php-version: '8.2' coverage: xdebug - name: Check PHP Version diff --git a/composer.json b/composer.json index c20b021..1daf361 100644 --- a/composer.json +++ b/composer.json @@ -18,11 +18,11 @@ } ], "provide": { - "psr/container-implementation": "^1" + "psr/container-implementation": "^1|^2" }, "require": { "php": "^7.4|^8.0|^8.1", - "psr/container": "^1" + "psr/container": "^1|^2" }, "require-dev": { "phpunit/phpunit": "^9.4",