Skip to content

Commit

Permalink
Merge pull request #50 from tighten/alk/add-php-7.4
Browse files Browse the repository at this point in the history
Add back PHP 7.4 compatibility
  • Loading branch information
faxblaster authored Aug 31, 2022
2 parents 12664e9 + c2fd49a commit 06c76e0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,13 @@ jobs:
strategy:
max-parallel: 1
matrix:
php: [ 8.0, 8.1 ]
php: [ 7.4, 8.0, 8.1 ]
laravel: [ 8.*, 9.* ]
include:
- php: 7.4
laravel: 8.*
testbench: 6.*
phpunit: 9.*
- php: 8.0
laravel: 8.*
testbench: 6.*
Expand All @@ -32,6 +36,9 @@ jobs:
laravel: 9.*
testbench: 7.*
phpunit: 9.*
exclude:
- php: 7.4
laravel: 9.*
services:
stripemock:
image: stripe/stripe-mock:v0.141.0
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
}
],
"require": {
"php": "^8.0|^8.1",
"php": "^7.4|^8.0|^8.1",
"stripe/stripe-php": ">=5.0"
},
"require-dev": {
Expand Down

0 comments on commit 06c76e0

Please sign in to comment.