Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze committed Feb 27, 2019
1 parent 0b336bf commit f9a0a1f
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to `laravel-stripe-webhooks` will be documented in this file

## 1.1.4 - 2018-02-27

- add support for Laravel 5.8

## 1.1.3 - 2018-11-03

- use `STRIPE_WEBHOOK_SECRET` env variable
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
],
"require": {
"php": "^7.0",
"illuminate/support": "~5.5.0|~5.6.0|~5.7.0",
"illuminate/support": "~5.5.0|~5.6.0|~5.7.0|~5.8.0",
"stripe/stripe-php": "^5.2|^6.0"
},
"require-dev": {
"orchestra/testbench": "~3.5.0|~3.6.0|~3.7.0",
"phpunit/phpunit": "^6.4|^7.0"
"orchestra/testbench": "~3.5.0|~3.6.0|~3.7.0|~3.8.0",
"phpunit/phpunit": "^6.4|^7.0|^8.0"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion tests/IntegrationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

class IntegrationTest extends TestCase
{
public function setUp()
public function setUp(): void
{
parent::setUp();

Expand Down
2 changes: 1 addition & 1 deletion tests/Middlewares/VerifySignatureTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

class VerifySignatureTest extends TestCase
{
public function setUp()
public function setUp(): void
{
parent::setUp();

Expand Down
2 changes: 1 addition & 1 deletion tests/StripeWebhookCallTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class StripeWebhookCallTest extends TestCase
/** @var \Spatie\StripeWebhooks\StripeWebhookCall */
public $stripeWebhookCall;

public function setUp()
public function setUp(): void
{
parent::setUp();

Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

abstract class TestCase extends OrchestraTestCase
{
public function setUp()
public function setUp(): void
{
parent::setUp();

Expand Down

0 comments on commit f9a0a1f

Please sign in to comment.