Skip to content

Commit cf11259

Browse files
committed
wip
1 parent 696e65b commit cf11259

File tree

5 files changed

+13
-1
lines changed

5 files changed

+13
-1
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"require": {
1919
"php": "^8.3 || ^8.4",
2020
"conedevelopment/bazar": "dev-master || ^1.2.0",
21-
"stripe/stripe-php": "^16.3"
21+
"stripe/stripe-php": "^17.5"
2222
},
2323
"require-dev": {
2424
"fakerphp/faker": "^1.9.1",

pint.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"preset": "laravel",
3+
"rules": {
4+
"declare_strict_types": true
5+
}
6+
}

src/Events/StripeWebhookInvoked.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Cone\Bazar\Stripe\Events;
46

57
use Illuminate\Foundation\Events\Dispatchable;

src/StripeDriver.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Cone\Bazar\Stripe;
46

57
use Cone\Bazar\Exceptions\TransactionDriverMismatchException;

src/StripeServiceProvider.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Cone\Bazar\Stripe;
46

57
use Cone\Bazar\Support\Facades\Gateway;

0 commit comments

Comments
 (0)