From 736720839e76a8649850f11aeec64c2538a5c6b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20N=C3=A9grier?= Date: Thu, 5 Mar 2020 22:20:42 +0100 Subject: [PATCH] Adding Laravel 7 compatibility --- composer.json | 10 +++++----- tests/Providers/GraphQLiteServiceProviderTest.php | 1 + 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/composer.json b/composer.json index 80c9f04..6713515 100644 --- a/composer.json +++ b/composer.json @@ -19,16 +19,16 @@ "require": { "php": ">=7.2", "thecodingmachine/graphqlite": "^4", - "illuminate/console": "^5.7|^6.0", - "illuminate/container": "^5.7|^6.0", - "illuminate/support": "^5.7|^6.0", - "illuminate/cache": "^5.7|^6.0", + "illuminate/console": "^5.7|^6.0|^7", + "illuminate/container": "^5.7|^6.0|^7", + "illuminate/support": "^5.7|^6.0|^7", + "illuminate/cache": "^5.7|^6.0|^7", "symfony/psr-http-message-bridge": "^1.3.0 || ^2", "laminas/laminas-diactoros": "^2.2.2", "symfony/cache": "^4.3 || ^5" }, "require-dev": { - "orchestra/testbench": "^3.7.7 || ^4", + "orchestra/testbench": "^3.7.7 || ^4 || ^5", "phpunit/phpunit": "^7.5.4 || ^8.3", "ext-sqlite3": "*" }, diff --git a/tests/Providers/GraphQLiteServiceProviderTest.php b/tests/Providers/GraphQLiteServiceProviderTest.php index 9744f9f..dfca626 100644 --- a/tests/Providers/GraphQLiteServiceProviderTest.php +++ b/tests/Providers/GraphQLiteServiceProviderTest.php @@ -169,5 +169,6 @@ public function testCachePurger(): void { $cachePurger = $this->app->make(CachePurger::class); $cachePurger->handle(); + $this->assertTrue(true); } }