Skip to content

Commit 87a10a9

Browse files
committed
allow stripe php v16
1 parent 0672180 commit 87a10a9

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

.github/workflows/tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
matrix:
2323
php: [ 8.2, 8.3 ]
2424
laravel: [ 10, 11 ]
25-
stripe: [ 12, 13, 14, 15 ]
25+
stripe: [ 12, 13, 14, 15, 16 ]
2626

2727
name: php v${{ matrix.php }} - Laravel v${{ matrix.laravel }} - Stripe v${{ matrix.stripe }}
2828

@@ -49,6 +49,6 @@ jobs:
4949
run: composer test:coverage
5050

5151
- name: Upload coverage report
52-
uses: codecov/codecov-action@v3
52+
uses: codecov/codecov-action@v4
5353
with:
5454
fail_ci_if_error: false

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## [3.16.0](https://github.com/ankurk91/laravel-stripe-exceptions/compare/3.15.0...3.16.0)
4+
5+
* Allow stripe-php sdk v16.x
6+
37
## [3.15.0](https://github.com/ankurk91/laravel-stripe-exceptions/compare/3.14.0...3.15.0)
48

59
* Remove stripe-php sdk v10 and v11

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"illuminate/http": "^10.0 || ^11.0",
2020
"illuminate/support": "^10.0 || ^11.0",
2121
"illuminate/translation": "^10.0 || ^11.0",
22-
"stripe/stripe-php": "^12.0 || ^13.0 || ^14.0 || ^15.0"
22+
"stripe/stripe-php": "^12.0 || ^13.0 || ^14.0 || ^15.0 || ^16.0"
2323
},
2424
"require-dev": {
2525
"mockery/mockery": "^1.4",

resources/lang/en/exceptions.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
declare(strict_types=1);
23

34
return [
45
'api' => [

0 commit comments

Comments
 (0)