Skip to content

Commit d9c6c36

Browse files
committed
Drop support for older version of PHP and Laravel.
1 parent 7a8901c commit d9c6c36

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: true
1414
matrix:
15-
php: [7.2, 7.3, 7.4, 8.0, 8.1]
15+
php: [7.4, 8.0, 8.1]
1616
stability: [prefer-lowest, prefer-stable]
1717
experimental: [false]
1818
name: Tests on PHP ${{ matrix.php }} - ${{ matrix.stability }}

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@
1919
}
2020
],
2121
"require": {
22-
"php": "^7.2 || ^8.0",
22+
"php": "^7.4 || ^8.0",
2323
"ext-json": "*",
24-
"guzzlehttp/guzzle": "^6.2 || ^7.0",
25-
"illuminate/contracts": "5.5 - 9",
26-
"illuminate/notifications": "5.5 - 9",
27-
"illuminate/support": "5.5 - 9"
24+
"guzzlehttp/guzzle": "^7.0",
25+
"illuminate/contracts": "8 - 9",
26+
"illuminate/notifications": "8 - 9",
27+
"illuminate/support": "8 - 9"
2828
},
2929
"require-dev": {
30-
"mockery/mockery": "^1.3",
31-
"phpunit/phpunit": "^7.0 || ^8.5.21 || ^9.0"
30+
"mockery/mockery": "^1.4",
31+
"phpunit/phpunit": "^9.0"
3232
},
3333
"autoload": {
3434
"psr-4": {

0 commit comments

Comments
 (0)