From 6ce6c5acdb5e60e0c8902674ed7ec2b6a832e5b8 Mon Sep 17 00:00:00 2001 From: Colin Hall Date: Wed, 27 May 2020 23:15:39 +0100 Subject: [PATCH] Update for Laravel 7 --- composer.json | 17 +++++------------ src/Support/Client.php | 2 +- 2 files changed, 6 insertions(+), 13 deletions(-) diff --git a/composer.json b/composer.json index b5edb60..1520e9e 100644 --- a/composer.json +++ b/composer.json @@ -13,13 +13,13 @@ } ], "require": { - "php": "^7.2", - "illuminate/support": "^6.0", - "macsidigital/laravel-api-client": "^2.0" + "php": "^7.2.5", + "illuminate/support": "^7.0", + "macsidigital/laravel-api-client": "^3.0" }, "require-dev": { - "orchestra/testbench": "^4.0", - "phpunit/phpunit": "^8.0" + "orchestra/testbench": "^5.0", + "phpunit/phpunit": "^8.5" }, "autoload": { "psr-4": { @@ -57,13 +57,6 @@ "options": { "symlink": true } - }, - { - "type": "path", - "url": "../laravel-oauth2-client", - "options": { - "symlink": true - } } ] } diff --git a/src/Support/Client.php b/src/Support/Client.php index c76d6a9..eb9e984 100644 --- a/src/Support/Client.php +++ b/src/Support/Client.php @@ -2,7 +2,7 @@ namespace MacsiDigital\Zoom\Support; -use MacsiDigital\API\Support\Factory; +use Illuminate\Http\Client\Factory; class Client extends Factory {