diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ec66029..192cd68 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,9 +9,17 @@ jobs: strategy: fail-fast: true matrix: - php: [7.4, 8.0, 8.1] - laravel: [8.*, 9.*, 10.*] - dependency-version: [prefer-lowest, prefer-stable] + php: [7.4, '8.0', 8.1, 8.2] + laravel: [8, 9, 10] + exclude: + - php: 7.4 + laravel: 9 + - php: 7.4 + laravel: 10 + - php: '8.0' + laravel: 10 + - php: 8.2 + laravel: 8 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} diff --git a/CHANGELOG.md b/CHANGELOG.md index c3fd2fb..a632c46 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,14 @@ All notable changes to `netgsm` will be documented in this file ## Unreleased +## [4.5.0] - 2023-05-11 + +- Php 8.2 support added. + +## [4.4.0] - 2023-02-16 + +- Laravel 10 support added. + ## [4.3.0] - 2022-02-08 - Laravel 9 support added. diff --git a/composer.json b/composer.json index 83e4ff2..1f78f52 100755 --- a/composer.json +++ b/composer.json @@ -31,7 +31,7 @@ } ], "require": { - "php": "^7.4|^8.0|^8.1", + "php": "^7.4|^8.0|^8.1|^8.2", "guzzlehttp/guzzle": "^7.1", "illuminate/support": "^8.0|^9.0|^10.0", "illuminate/notifications": "^8.0|^9.0|^10.0", @@ -43,7 +43,7 @@ "fakerphp/faker": "^1.14", "phpunit/phpunit": "^9.4", "mockery/mockery": "^1.4", - "orchestra/testbench": "^6.0|^7.0" + "orchestra/testbench": "^6.0|^7.0|^8.0" }, "autoload": { "psr-4": {