diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 04739a9..0e79ec3 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -14,15 +14,18 @@ jobs: fail-fast: false matrix: php_version: - - '7.4' - '8.0' + - '8.1' + - '8.2' dependencies: - 'default' include: - - php_version: '7.4' - dependencies: 'lowest' - php_version: '8.0' dependencies: 'lowest' + - php_version: '8.1' + dependencies: 'lowest' + - php_version: '8.2' + dependencies: 'lowest' steps: - name: Setup PHP uses: shivammathur/setup-php@v2 diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e1c490..b42bfee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ ### Unreleased +* Drop support for PHP 7.4 +* Support PHP 8.1 & 8.2 + ### v2.0.0 (2021-10-12) * Drop support for php 7.2 diff --git a/composer.json b/composer.json index 55bc3ec..582334e 100644 --- a/composer.json +++ b/composer.json @@ -11,11 +11,11 @@ } ], "require": { - "guzzlehttp/guzzle": "^6.2 || ^7.0", - "php": "^7.4 || ~8.0.0" + "guzzlehttp/guzzle": "^7.0", + "php": "~8.0.0 || ~8.1.0 || ~8.2.0" }, "require-dev": { - "phpunit/phpunit": "^9.5", + "phpunit/phpunit": "^9.5.5", "johnkary/phpunit-speedtrap": "^3.3" }, "support": { diff --git a/phpunit.xml b/phpunit.xml index b6ebd69..eb50be6 100644 --- a/phpunit.xml +++ b/phpunit.xml @@ -6,6 +6,7 @@ convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" + convertDeprecationsToExceptions="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">