Skip to content

Commit 71523ac

Browse files
committed
Removed PHP 8.1 and Laravel 9 Support
1 parent 4f480c6 commit 71523ac

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/run-tests.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,14 @@ jobs:
1010
strategy:
1111
fail-fast: true
1212
matrix:
13-
php: [8.1, 8.2, 8.3, 8.4]
14-
laravel: [11.*, 10.*, 9.*]
13+
php: [8.2, 8.3, 8.4]
14+
laravel: [11.*, 10.*]
1515
dependency-version: [prefer-stable]
1616
include:
1717
- laravel: 11.*
1818
testbench: 9.*
1919
- laravel: 10.*
2020
testbench: 8.*
21-
- laravel: 9.*
22-
testbench: 7.*
2321

2422
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
2523

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ All notable changes to `human-readable-time` will be documented in this file
55
## 1.2.0 - 2022-04-03
66

77
- Added Laravel 11 Support
8+
- Removed PHP 8.1 Support
9+
- Removed Laravel 9 Support
810

911
## 1.1.0 - 2022-04-03
1012

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@
99
],
1010
"require": {
1111
"php": "^8.1",
12-
"illuminate/support": "^9.0|^10.0|^11.0"
12+
"illuminate/support": "^10.0|^11.0"
1313
},
1414
"require-dev": {
15-
"orchestra/testbench": "^7.0|^8.0|^9.0",
16-
"pestphp/pest": "^1.22|^2.0",
17-
"pestphp/pest-plugin-laravel": "^1.4|^2.0",
18-
"spatie/pest-plugin-snapshots": "^1.1|^2.0",
19-
"spatie/pest-plugin-test-time": "^1.1|^2.0"
15+
"orchestra/testbench": "^8.0|^9.0",
16+
"pestphp/pest": "^2.0",
17+
"pestphp/pest-plugin-laravel": "^2.0",
18+
"spatie/pest-plugin-snapshots": "^2.0",
19+
"spatie/pest-plugin-test-time": "^2.0"
2020
},
2121
"autoload": {
2222
"psr-4": {

0 commit comments

Comments
 (0)