Skip to content

Commit 22e4845

Browse files
committed
chore: Bump version
Signed-off-by: Bruno Gaspar <brunofgaspar1@gmail.com>
1 parent 6f5d3d6 commit 22e4845

File tree

135 files changed

+162
-155
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

135 files changed

+162
-155
lines changed

.php_cs.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* bundled with this package in the LICENSE file.
1414
*
1515
* @package Stripe Billing Laravel
16-
* @version 12.0.1
16+
* @version 13.0.0
1717
* @author Cartalyst LLC
1818
* @license Cartalyst PSL
1919
* @copyright (c) 2011-2020, Cartalyst LLC

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
language: php
22

33
php:
4-
- 7.2
54
- 7.3
65
- 7.4
76

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
### v13.0.0 - TBA
4+
5+
- Updated for Laravel 8.
6+
37
### v12.0.1 - 2020-06-11
48

59
`FIXED`

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@
22

33
[![Build Status][icon-travis]][link-travis]
44

5-
Stripe Billing functionality for Laravel 7.
5+
Stripe Billing functionality for Laravel 8.
66

77
Part of the Cartalyst Arsenal & licensed [Cartalyst PSL](LICENSE). Code well, rock on.
88

99
## Version Matrix
1010

1111
Version | Laravel | PHP Version
1212
------- | ------- | ------------
13+
13.x | 8.x | >= 7.3
1314
12.x | 7.x | >= 7.2.5
1415
11.x | 6.x | >= 7.2
1516
10.x | 5.8 | >= 7.1.3
@@ -47,4 +48,4 @@ This software is released under the [Cartalyst PSL](LICENSE) License.
4748
[link-docs]: https://cartalyst.com/manual/stripe-billing-laravel
4849
[link-travis]: https://travis-ci.com/cartalyst/stripe-billing-laravel
4950

50-
[icon-travis]: https://travis-ci.com/cartalyst/stripe-billing-laravel.svg?token=LAut3LMbmBFi3T9j45FH&branch=12.x
51+
[icon-travis]: https://travis-ci.com/cartalyst/stripe-billing-laravel.svg?token=LAut3LMbmBFi3T9j45FH&branch=13.x

composer.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cartalyst/stripe-billing-laravel",
3-
"description": "Stripe Billing functionality for Laravel 7",
3+
"description": "Stripe Billing functionality for Laravel 8",
44
"keywords": [
55
"php",
66
"cartalyst",
@@ -17,17 +17,17 @@
1717
}
1818
],
1919
"require": {
20-
"php": "^7.2.5",
21-
"cartalyst/stripe-laravel": "^12.0",
20+
"php": "^7.3",
21+
"cartalyst/stripe-laravel": "^13.0",
2222
"doctrine/dbal": "^2.5",
2323
"nesbot/carbon": "^2.0",
24-
"symfony/filesystem": "^5.0",
25-
"symfony/finder": "^5.0"
24+
"symfony/filesystem": "^5.1",
25+
"symfony/finder": "^5.1"
2626
},
2727
"require-dev": {
2828
"cartalyst/php-cs-fixer-config": "^1.0",
29-
"orchestra/testbench": "^5.0",
30-
"phpunit/phpunit": "^8.0"
29+
"orchestra/testbench": "^6.0",
30+
"phpunit/phpunit": "^9.0"
3131
},
3232
"autoload": {
3333
"psr-4": {
@@ -47,7 +47,7 @@
4747
"extra": {
4848
"component": "addon",
4949
"branch-alias": {
50-
"dev-master": "12.0.x-dev"
50+
"dev-master": "13.0.x-dev"
5151
},
5252
"laravel": {
5353
"providers": [

database/migrations/2015_03_17_000000_cartalyst_stripe_billing_create_cards_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* bundled with this package in the LICENSE file.
1414
*
1515
* @package Stripe Billing Laravel
16-
* @version 12.0.1
16+
* @version 13.0.0
1717
* @author Cartalyst LLC
1818
* @license Cartalyst PSL
1919
* @copyright (c) 2011-2020, Cartalyst LLC

database/migrations/2015_03_17_000001_cartalyst_stripe_billing_create_invoices_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* bundled with this package in the LICENSE file.
1414
*
1515
* @package Stripe Billing Laravel
16-
* @version 12.0.1
16+
* @version 13.0.0
1717
* @author Cartalyst LLC
1818
* @license Cartalyst PSL
1919
* @copyright (c) 2011-2020, Cartalyst LLC

database/migrations/2015_03_17_000002_cartalyst_stripe_billing_create_invoice_items_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* bundled with this package in the LICENSE file.
1414
*
1515
* @package Stripe Billing Laravel
16-
* @version 12.0.1
16+
* @version 13.0.0
1717
* @author Cartalyst LLC
1818
* @license Cartalyst PSL
1919
* @copyright (c) 2011-2020, Cartalyst LLC

database/migrations/2015_03_17_000003_cartalyst_stripe_billing_create_payments_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* bundled with this package in the LICENSE file.
1414
*
1515
* @package Stripe Billing Laravel
16-
* @version 12.0.1
16+
* @version 13.0.0
1717
* @author Cartalyst LLC
1818
* @license Cartalyst PSL
1919
* @copyright (c) 2011-2020, Cartalyst LLC

database/migrations/2015_03_17_000004_cartalyst_stripe_billing_create_payment_refunds_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* bundled with this package in the LICENSE file.
1414
*
1515
* @package Stripe Billing Laravel
16-
* @version 12.0.1
16+
* @version 13.0.0
1717
* @author Cartalyst LLC
1818
* @license Cartalyst PSL
1919
* @copyright (c) 2011-2020, Cartalyst LLC

0 commit comments

Comments
 (0)