From 24195ca7f26c4329ff36de0967ed6271fe372837 Mon Sep 17 00:00:00 2001 From: Alex Plekhanov Date: Fri, 17 Dec 2021 18:44:07 +0100 Subject: [PATCH 1/2] chore: Allowed PHPUnit 9 --- CHANGELOG.md | 5 +++++ composer.json | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e187d0..185db77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ All notable changes to `laravel-notification-channels/pushbullet` will be documented in this file +## 1.3.1 - 2021-12-17 +### Changed +- Minor CI improvements +- Allowed PHPUnit 9 + ## 1.3.0 - 2021-07-28 ### Changed - Bumped PHP requirement to 7.3 diff --git a/composer.json b/composer.json index 7729987..3962dc7 100644 --- a/composer.json +++ b/composer.json @@ -19,7 +19,7 @@ }, "require-dev": { "mockery/mockery": "^1.2.0", - "phpunit/phpunit": "^8.5.21" + "phpunit/phpunit": "^8.5.21 || ^9.0" }, "autoload": { "psr-4": { From 50625bd1ce73f2adf2b97704eaec565aa559e745 Mon Sep 17 00:00:00 2001 From: Alex Plekhanov Date: Fri, 17 Dec 2021 18:45:40 +0100 Subject: [PATCH 2/2] chore: Added name for composer install step in tests workflow --- .github/workflows/tests.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 79dd62f..9e6b9be 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -28,7 +28,8 @@ jobs: tools: composer:v2 coverage: none - - uses: "ramsey/composer-install@v1" + - name: Composer install + uses: "ramsey/composer-install@v1" with: dependency-versions: "${{ matrix.dependencies }}"