Skip to content

Commit c489bb8

Browse files
authored
Merge pull request #118 from alexsoft/experimental-8.1-drop-7.1
Added 8.1 as experimental for tests, dropped 7.1
2 parents 808ccb7 + fbd24e4 commit c489bb8

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Setup PHP
1717
uses: shivammathur/setup-php@v2
1818
with:
19-
php-version: 8.0
19+
php-version: 7.4
2020
tools: composer:v2
2121
coverage: pcov
2222

.github/workflows/tests.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,17 @@ on:
77
jobs:
88
tests:
99
runs-on: ubuntu-latest
10+
continue-on-error: ${{ matrix.experimental }}
1011
strategy:
1112
fail-fast: true
1213
matrix:
13-
php: [7.1, 7.2, 7.3, 7.4, 8.0]
14+
php: [7.2, 7.3, 7.4, 8.0]
1415
stability: [prefer-lowest, prefer-stable]
16+
experimental: [false]
17+
include:
18+
- php: 8.1
19+
stability: prefer-stable
20+
experimental: true
1521

1622
name: Tests on PHP ${{ matrix.php }} - ${{ matrix.stability }}
1723

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
All notable changes to `telegram` will be documented in this file
44

5+
## Unreleased
6+
- dropped PHP 7.1 support
7+
58
## 0.6.0 - 2021-10-04
69

710
- Add GitHub Actions workflows for tests and coverage. PR [#103](https://github.com/laravel-notification-channels/telegram/pull/103).

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
}
2020
],
2121
"require": {
22-
"php": "^7.1 || ^8.0",
22+
"php": "^7.2 || ^8.0",
2323
"ext-json": "*",
2424
"guzzlehttp/guzzle": "^6.2 || ^7.0",
2525
"illuminate/notifications": "^5.5 || ^6.0 || ^7.0 || ^8.0",

0 commit comments

Comments
 (0)