Skip to content

Commit 06c76e0

Browse files
authored
Merge pull request #50 from tighten/alk/add-php-7.4
Add back PHP 7.4 compatibility
2 parents 12664e9 + c2fd49a commit 06c76e0

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.github/workflows/build-test.yml

+8-1
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,13 @@ jobs:
1313
strategy:
1414
max-parallel: 1
1515
matrix:
16-
php: [ 8.0, 8.1 ]
16+
php: [ 7.4, 8.0, 8.1 ]
1717
laravel: [ 8.*, 9.* ]
1818
include:
19+
- php: 7.4
20+
laravel: 8.*
21+
testbench: 6.*
22+
phpunit: 9.*
1923
- php: 8.0
2024
laravel: 8.*
2125
testbench: 6.*
@@ -32,6 +36,9 @@ jobs:
3236
laravel: 9.*
3337
testbench: 7.*
3438
phpunit: 9.*
39+
exclude:
40+
- php: 7.4
41+
laravel: 9.*
3542
services:
3643
stripemock:
3744
image: stripe/stripe-mock:v0.141.0

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
}
2727
],
2828
"require": {
29-
"php": "^8.0|^8.1",
29+
"php": "^7.4|^8.0|^8.1",
3030
"stripe/stripe-php": ">=5.0"
3131
},
3232
"require-dev": {

0 commit comments

Comments
 (0)