Skip to content

Commit 663f584

Browse files
committed
chore: Bump to Laravel 12
Signed-off-by: Bruno Gaspar <[email protected]>
1 parent 7c8e330 commit 663f584

File tree

8 files changed

+19
-14
lines changed

8 files changed

+19
-14
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
language: php
22

33
php:
4-
- 8.1
4+
- 8.3
55

66
cache:
77
directories:

CHANGELOG.md

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

3+
### v17.0.0 - TBA
4+
5+
- Support for Laravel 12
6+
37
### v16.0.0 - 2024-03-13
48

59
`REVISED`

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
The BSD 3-Clause License
2-
Copyright (c) 2011-2023, Cartalyst LLC
2+
Copyright (c) 2011-2025, Cartalyst LLC
33
All rights reserved.
44

55
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

README.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,15 @@
55
[![Latest Version on Packagist][icon-version]][link-packagist]
66
[![Total Downloads][icon-downloads]][link-packagist]
77

8-
Laravel 11 integration for the [Cartalyst Stripe](https://cartalyst.com/manual/stripe/2.0) package.
8+
Laravel 12 integration for the [Cartalyst Stripe](https://cartalyst.com/manual/stripe/2.0) package.
99

1010
An open source package by [Cartalyst](https://cartalyst.com), code well, rock on!
1111

1212
## Version Matrix
1313

1414
Version | Laravel | PHP Version
15-
------- | --------- | ------------
15+
------- |-----------| ------------
16+
17.x | 12.x | >= 8.3
1617
16.x | 11.x | >= 8.2
1718
15.x | 10.x | >= 8.1
1819
14.x | 9.x | >= 8.0
@@ -56,7 +57,7 @@ This software is released under the [BSD 3-Clause](LICENSE) License.
5657
[link-license]: https://opensource.org/licenses/MIT
5758
[link-packagist]: https://packagist.org/packages/cartalyst/stripe-laravel
5859

59-
[icon-travis]: https://travis-ci.org/cartalyst/stripe-laravel.svg?branch=16.x
60+
[icon-travis]: https://travis-ci.org/cartalyst/stripe-laravel.svg?branch=17.x
6061
[icon-license]: https://poser.pugx.org/cartalyst/stripe-laravel/license
6162
[icon-version]: https://poser.pugx.org/cartalyst/stripe-laravel/version
6263
[icon-downloads]: https://poser.pugx.org/cartalyst/stripe-laravel/downloads

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^8.2",
19+
"php": "^8.3",
2020
"cartalyst/stripe": "^2.0",
21-
"illuminate/support": "^11.0"
21+
"illuminate/support": "^12.0"
2222
},
2323
"require-dev": {
2424
"cartalyst/php-cs-fixer-config": "^1.0",
@@ -42,7 +42,7 @@
4242
"extra": {
4343
"component": "implementation",
4444
"branch-alias": {
45-
"dev-master": "16.0.x-dev"
45+
"dev-master": "17.0.x-dev"
4646
},
4747
"laravel": {
4848
"providers": [

src/Facades/Stripe.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
* bundled with this package in the LICENSE file.
1212
*
1313
* @package Stripe Laravel
14-
* @version 16.0.0
14+
* @version 17.0.0
1515
* @author Cartalyst LLC
1616
* @license BSD License (3-clause)
17-
* @copyright (c) 2011-2023, Cartalyst LLC
17+
* @copyright (c) 2011-2025, Cartalyst LLC
1818
* @link https://cartalyst.com
1919
*/
2020

src/StripeServiceProvider.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
* bundled with this package in the LICENSE file.
1212
*
1313
* @package Stripe Laravel
14-
* @version 16.0.0
14+
* @version 17.0.0
1515
* @author Cartalyst LLC
1616
* @license BSD License (3-clause)
17-
* @copyright (c) 2011-2023, Cartalyst LLC
17+
* @copyright (c) 2011-2025, Cartalyst LLC
1818
* @link https://cartalyst.com
1919
*/
2020

tests/FacadeTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
* bundled with this package in the LICENSE file.
1212
*
1313
* @package Stripe Laravel
14-
* @version 16.0.0
14+
* @version 17.0.0
1515
* @author Cartalyst LLC
1616
* @license BSD License (3-clause)
17-
* @copyright (c) 2011-2023, Cartalyst LLC
17+
* @copyright (c) 2011-2025, Cartalyst LLC
1818
* @link https://cartalyst.com
1919
*/
2020

0 commit comments

Comments
 (0)